Chrome conditional comments

前端 未结 5 1031
后悔当初
后悔当初 2020-12-04 22:12

Is there such a thing as conditional comments for Chrome?

I have a page that renders differently in Chrome when compared to Firefox.

Thanks

5条回答
  •  离开以前
    2020-12-04 22:39

    You can target WebKit based browsers using this in your CSS

    @media screen and (-webkit-min-device-pixel-ratio:0) { 
    
    Body {}
    
    }
    

    Perhaps this will help?

提交回复
热议问题