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 on list-style-position: inside</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="flags" content="may" />
<meta name="assert" content="User agents may ignore ':first-letter' on list items with 'list-style-position: inside'." />
<style type="text/css">
li:first-letter
{
color: green;
}
.inside
{
list-style-position: inside;
}
</style>
</head>
<body>
<p>Test passes regardless if the letter "F" in the "Filler Text" below is green.</p>
<ul>
<li class="inside">Filler Text</li>
</ul>
</body>
</html>