Find solution of following Queries:
Ques: How to Capitalize first character of each word in a sentence?
Ques: How to convert a String/Text into lower case?
Ques: How to convert a String/Text into upper case?
CSS text-transform Property
Example
<html>
<head>
<style type="text/css">
.uppercase {text-transform:uppercase;}
<head>
<style type="text/css">
.uppercase {text-transform:uppercase;}
.lowercase {text-transform:lowercase;}
.capitalize {text-transform:capitalize;}
</style>
</head>
<body>
<span class="uppercase">This is some text.</span >
<p class="lowercase">This is some text.</p>
<span class="capitalize">This is some text.</span >
</body>
</html>
</style>
</head>
<body>
<span class="uppercase">This is some text.</span >
<p class="lowercase">This is some text.</p>
<span class="capitalize">This is some text.</span >
</body>
</html>
OUTPUT
THIS IS SOME TEXT.
this is some text.
This Is Some Text.
THIS IS SOME TEXT.
this is some text.
This Is Some Text.
Wednesday, February 01, 2012
PAVAN BHARDWAJ
0 comments:
Post a Comment