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: First-letter as a float</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="assert" content="The float property applies to :first-letter." />
<style type="text/css">
div:first-letter
{
color: green;
float: right;
font-size: 36px;
}
</style>
</head>
<body>
<p>Test passes if there is a green letter "T" to the right of the "Filler Text" below.</p>
<div>TFiller Text</div>
</body>
</html>