I have a page with several uppercase strings that I want to transform in capatalized strings. I need to capitalize the first letter of each word.
If I use:
text-transform: lowercase;
text-transform: capitalize;
This doesn't work because only the second rule is applied. Is there any workaround for this? I prefer not to use JS.