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 with background applied</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="assert" content="Background properties only apply to the principal box and not the marker box when the marker is set to outside." />
<style type="text/css">
#div1
{
background: orange;
margin-left: 50px;
padding-left: 30px;
}
div div
{
display: list-item;
list-style-type: disc;
background: blue;
}
</style>
</head>
<body>
<p>Test passes if the text has a blue background and the marker has an orange background.</p>
<div id="div1">
<div>This text should have a blue background</div>
</div>
</body>
</html>