First lowercase the text then capitalize it. Is it possible with CSS?
Edit: Example: HELLO WORLD -> Hello World
HELLO WORLD
Hello World
Edit2: I have a lis
Yep:
.className { text-transform:capitalize; }
Javascript:
function capitalize(s){ return s.toLowerCase().replace( /\b./g, function(a){ return a.toUpperCase(); } ); }; capitalize('this IS THE wOrst string eVeR');
Stolen from here: Capitalize words in string