JSFiddle - React, Tailwind, and code Playground

HTML

<p class="test chrome">I Should be Green if you're in chrome, Red in all other browsers</p>

CSS

.test {color:red;}

@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) { 
  .selector:not(*:root), .chrome {
    color: green;
  }
}