JSFiddle - React, Tailwind, and code Playground
by Chris Ball
HTML
<div class="barry">
<ul>
<li>tits</li>
<li>tits</li>
</ul>
</div>
CSS
/* .barry {
font-size: 2rem;
&::first-line {
color: red;
}
}
*/
.barry::first-line {
color: red;
}
.bar