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: Font-size and 'display: list-item' elements</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="flags" content="ahem" />
<meta name="assert" content="The 'font-size' property applies to 'display: list-item' elements." />
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type="text/css">
div
{
font-family: Ahem;
font-size: 1in;
margin-left: 2em;
}
#div1
{
background: orange;
height: 1in;
width: 1in;
}
#div2
{
display: list-item;
}
</style>
</head>
<body>
<p>Test passes if the boxes below are the same size and the bottom box has a marker bullet on the left-hand side.</p>
<div id="div1"></div>
<div id="div2">X</div>
</body>
</html>