<html>
<head>
<title>Abakada CSS Demo: text-transform Attribute</title>
<link rel="stylesheet" href="/shared/netdemos.css">
<style type="text/css">
<!--
.caps { text-transform: capitalize }
.upper { text-transform: uppercase }
.lower { text-transform: lowercase }
-->
</style>
</head>
<body>
<!-- #include virtual="~/shared/top.inc" -->
<div class="header"><h2>Abakada CSS Demo: text-transform Attribute</h2></div>
<hr size=1 width=92%>
<center>
<h5>This example uses calls to an embedded stylesheet to dynamically set an element's <b>text-transform</b> style attribute.</h5>
<p id="msg" onmouseover="this.className='caps'"
onclick="this.className='upper'"
ondblclick="this.className='lower'"
onmouseout="this.className=''">
Move the mouse over me to apply a style class that capitalizes the first letter of each word.
Click on me to make all letters uppercase.
Double-click to see all text in lowercase.
Move the mouse out to restore.
</p>
</center>
<hr size=1 width=92%>
<!-- #include virtual="~/shared/viewsrc.inc" -->
</body>
</html>