JSFiddle - React, Tailwind, and code Playground
by Jake
HTML
<div> Hello
</div>
CSS
:root {
--jp: 1;
}
div {
background: teal;
padding: 1em;
color: white;
}
@container style(--jp: 1 ) {
div {
background: red;
}
}
by Jake
<div> Hello
</div>
:root {
--jp: 1;
}
div {
background: teal;
padding: 1em;
color: white;
}
@container style(--jp: 1 ) {
div {
background: red;
}
}