Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<title>CSS Test: Text-transform set to 'uppercase'</title>
<link rel="match" href="text-transform-003-ref.xht"/>
<meta name="assert" content="The 'text-transform' property set to 'uppercase' on an element makes every letter uppercase." />
<style type="text/css">
div
{
text-transform: uppercase;
}
</style>
</head>
<body>
<p>Test passes if the line of "Filler Text" and all of the characters of the text are all in uppercase.</p>
<div>filler text Filler Text FILLER TEXT fILLER tEXT FiLlEr tExT</div>
</body>
</html>