How can I prescribe style exclusively for Google Chrome?
  • one
    Just make a style and test it on Google Chrome :) Or is it necessary that it works ONLY in chrome, but it doesn't even start in other browsers? - Anton Mukhin
  • yes that is exactly the way it should be - chelovechki

1 answer 1

@media screen and (-webkit-min-device-pixel-ratio:0) { #element { color: red; } } 

/ or /

 body:nth-of-type(1) #element { color: red; } 
  • one
    safari also uses the webkit engine. - Anton Mukhin