JSFiddle - React, Tailwind, and code Playground
by zafer
HTML
<p>TEXT THAT IS SET IN ALL CAPITALS.</p>
<p>TExt that wAs wriTTEn rather poorly.</p>
<p>A normal sentence would be treated just fine.</p>
CSS
p {
text-transform: lowercase;
}
p:first-letter {
text-transform: uppercase;
}