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: Counter-reset with the value 'none'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<meta name="assert" content="The counter-reset set to 'none'." />
<style type="text/css">
div
{
counter-reset: ident 5;
}
div:before
{
font-size: 30px;
content: counter(ident);
}
#none
{
counter-reset: none;
}
</style>
</head>
<body>
<p>Test passes if the numbers '5 5 5' appear vertically below.</p>
<div></div>
<div id="none"></div>
<div></div>
</body>
</html>