<html>
<head>
<title>Abakada CSS Demo: textTransform Property</title>
<link rel="stylesheet" href="/shared/netdemos.css">
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: textTransform Property</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses inline event handlers to dyamically transform an object's text.</h5>
<p id="msg" onmouseover="this.style.textTransform='capitalize'"
onclick="this.style.textTransform='uppercase'"
ondblclick="this.style.textTransform='lowercase'"
onmouseout="this.style.textTransform=''">
Move the mouse over this text to capitalize the first letter of each word.
Click and all the letters are made uppercase. Double-click to all letters in lowercase.
Move the mouse out to restore.
</p>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>