in this tutorial u can control the letters in the text,which ever u want uppercase,lowercase, capitalize
<html>
<head>
<style type="text/css">
p.uppercase {text-transform: uppercase}
p.lowercase {text-transform: lowercase}
p.capitalize {text-transform: capitalize}
</style>
</head>
<body>
<p class="uppercase">this is some text in a paragraph </p>
<p class="lowercase">this is some text in a paragraph </p>
<p class="capitalize">this is some text in a paragraph </p>
</body>
</html>
May 5, 2009
0 controls the letters in the text
Posted by raj on 2:39 AM
0 comments:
Post a Comment