JSFiddle - React, Tailwind, and code Playground

HTML

<p>
    For IE , the text color will be red    
</p>

CSS

p{
  color: blue;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { 
    p{
         color: red;
    }
}