Capitalization

The text-transform property is used to control the capitalization of a block of text..

The values of text-transform are.

ValuesDescription
none
capitalizeTo capitalize the first character of each word.
uppercaseTo capitalize all characters.
lowercaseTo decapitalize all characters.
inheritThe property is inherited from the parent.


example
 text-transform : uppercase
text-transform : lowercase

snippet
<html>
<head>
<style>
p {text-transform:uppercase;}
span {text-transform:lowercase}
div {text-transform:capitalize}
</style>
</head>
<body>
<p>Sometimes you will never know the value of a Moment until it becomes a memory.</p>
<span>Sometimes you will never know the value of a Moment until it becomes a memory.</span>
<div>Sometimes you will never know the value of a Moment until it becomes a memory.</div>
</body>
</html>
Related Tutorial
Follow Us
https://www.facebook.com/Rookie-Nerd-638990322793530 https://twitter.com/RookieNerdTutor https://plus.google.com/b/117136517396468545840 #
Contents +