JSFiddle - React, Tailwind, and code Playground
by tikosar
HTML
<p> hello </p>
<p> world </p>
CSS
p:before {
content: "BEFORE ";
}
p::first-child::before {
content: "1ST";
}
by tikosar
<p> hello </p>
<p> world </p>
p:before {
content: "BEFORE ";
}
p::first-child::before {
content: "1ST";
}