This question already has answers here:
Is it possible to target Chrome only, not all Webkit powered browsers?
(2个答案)
5年前关闭。
你能解释一下我怎样才能只针对Google Chrome的css吗?
谢谢
拉凯什·普拉贾帕蒂
贾瓦斯克里特溶液
可能的复制
How to apply specific CSS rules to Chrome only?
(2个答案)
5年前关闭。
你能解释一下我怎样才能只针对Google Chrome的css吗?
谢谢
拉凯什·普拉贾帕蒂
最佳答案
溶液
@media screen and (-webkit-min-device-pixel-ratio:0) {
div{top:0;}
}
贾瓦斯克里特溶液
if (navigator.appVersion.indexOf("Chrome/") != -1) {
// modify anything you want
}
可能的复制
How to apply specific CSS rules to Chrome only?