最近,我使用css技巧对一个站点进行了一些CSS修复,只针对Safari浏览器,有些类似于以下内容:
::i-block-chrome, .someclass{
atribute: value;
}但我发现这个技巧并不适用于Mac设备(Macbook、iPhones或iPads)。这里有人能告诉我解决这个问题的其他方法吗?
谢谢!
发布于 2016-03-04 12:20:15
@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">
https://stackoverflow.com/questions/28479463
复制相似问题