Lower case all then capitalize – pure CSS [duplicate]

This should do it when you have the single words in different div’s

#test3 { text-transform: lowercase; }

#test3::first-letter { text-transform: uppercase; }


<div id="test3">haLLo</div>

Leave a Comment