I have a div element that sets any text withing to upper case.
I need to add another div within the first div but any text within should be properly capitalized. The only way I can do that is by adding the following two:
text-transform:lowercase;
text-transform:capitalize
It works, but is there a better way to combine these two?
What about
text-transform:noneto override the parent setting.