JSFiddle - React, Tailwind, and code Playground
by Daniel Tan
HTML
<p id="test">If this text is green, your browser supports <code>@supports</code>.
CSS
#test {
color: red;
}
@supports (color: green) {
#test {
color: green;
}
}