Capitalize letters using CSS

August 12, 2008 by admin  
Filed under CSS

This example shows how to use CSS to capitalize letters.

<html>
<head>
<style type=”text/css”>
p.capitalize {text-transform: capitalize}
</style>
</head>
<body>
<p class=”capitalize”>
capitalized letters in a sentence
</p>
</body>
</html>