Is there a CSS code that will make the text in that style capitalize?
Printable View
Is there a CSS code that will make the text in that style capitalize?
text-transform: uppercase;
Oooh nice.
Easy :)
HTML Code:<style type="text/css">
.uppercase {text-transform: uppercase;
}
</style>
<div class="uppercase">capital text!!</div>
Thanks a bunch.
List of cases:
capitalize
uppercase
lowercase