I want to Capitalize first letter only and other should be small using CSS
String is:
SOMETHING BETTER
sOMETHING bETTER
Something better
but the result should be
Something Better
Is this possible using CSS? To Capitalize first letter I am using
text-transform: capitalize;
But not able to capitalize in each case. "I want to use CSS because in my application it has written every where hard coded but a class has been called everywhere."
text-transform: lowercase
into atext-transform: capitalize
won't work. If you want to use javascript, here's a link to an answer for that: #197472 – Frediafredieucwords("UPPERCASE WORD HERE");
, and the result :Uppercase Word Here"
- php.net/manual/en/function.ucwords.php You can't do it using just CSS, because you can't dolowercase
and thencapitalize
. – Kew