JSFiddle - React, Tailwind, and code Playground
by imys
HTML
<h1 class="one">world</h1>
<h1 class="two">world</h1>
CSS
h1::before {
content: 'hello'
}
h1::first-letter {
color: red
}
.two {
padding-left: 2.5em
}
.two::before {
position: absolute;
left: 0
}