JSFiddle - React, Tailwind, and code Playground
by phloe
HTML
<div id="id" class="class">
</div>
CSS
div {
min-height: 200px;
}
#id {
background-color: red;
}
.class:matches(#id) {
background-color: green;
}
by phloe
<div id="id" class="class">
</div>
div {
min-height: 200px;
}
#id {
background-color: red;
}
.class:matches(#id) {
background-color: green;
}