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: List-style with only list-style-image as a value</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="flags" content="image" />
<meta name="assert" content="The shorthand property 'list-style' applies 'list-style-image'." />
<style type="text/css">
body
{
margin: 50px;
}
div
{
display: list-item;
list-style: url('support/green15x15.png');
}
</style>
</head>
<body>
<p>Test passes if the first line of text has a green square bullet.</p>
<div>
This is the first line of text.<br />
This is the second line of text.
</div>
</body>
</html>