JSFiddle - React, Tailwind, and code Playground
by imys
HTML
<h1 class="capitalize">hello world</h1>
<h1 class="capitalize">HELLO WORLD</h1>
<h1 class="capitalize before"> world</h1>
<h1 class="capitalize after">hello </h1>
CSS
.capitalize {
text-transform: capitalize
}
.before:before {
content: 'hello'
}
.after:after {
content: 'world'
}