JSFiddle - React, Tailwind, and code Playground
by Chris Rebert
HTML
<div id="outer">
Outer
<div id="inner">Inner</div>
</div>
CSS
#outer {
background-color: fuchsia;
padding: 10px;
}
#inner {
background-color: orange;
}
by Chris Rebert
<div id="outer">
Outer
<div id="inner">Inner</div>
</div>
#outer {
background-color: fuchsia;
padding: 10px;
}
#inner {
background-color: orange;
}