:: i-block-chrome css技巧在Mac上不起作用

时间:2015-02-12 14:04:33

标签: ios css macos

最近我使用CSS技巧在网站上进行了一些css修复,仅针对Safari浏览器,有些类似于:

::i-block-chrome, .someclass{
   atribute: value;
}

但我发现这个技巧不适用于Mac设备(Macbook,iPhone或iPad)。这里有人可以告诉我一些解决这个问题的方法吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

 @media screen and (-webkit-min-device-pixel-ratio:0) {
    ::i-block-chrome, .someclass {
   /* Add your style*/
    }
}
should be have below the code at <head> section

<meta name="viewport" content="width=device-width, initial-scale=1.0">