JSFiddle - React, Tailwind, and code Playground
by gweax
HTML
<h1>Ignore IE < 9 via media queries</h1>
CSS
h1 {
font-family: "Comic Sans MS";
color: red;
}
@media screen and (color) {
h1 {
font-family: serif;
color: green;
}
}