I was wondering if there was any way using only CSS, (and this CAN be browser specific CSS) to convert all uppercase text to words that are only initially capitalized for example:
I YELL WITH MY KEYBOARD
would be converted to:
I Yell With My Keyboard
EDIT: I realized I wasn’t clear enough in my question, the text was entered capitalized, not initially lowercase, text-transform: capitalize doesn’t work on data that has been entered like this it seems.
There’s a few things you can do with CSS for text transformations, here’s all of them.
Unfortunately there is no Camel Case text-transform.
You could always use Javascript to transform the text appropriately or if you are using a scripting language such as PHP or ASP then change it in there.
Here’s an example taken from the strtoupper PHP doc page: