Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<head>
<title>CSS Test: Implied counter scopes by counter use</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/"/>
<style type="text/css">
body { white-space: nowrap; }
.i { counter-increment: c 1; }
.r { counter-reset: c 0; }
.u:before { content: counters(c, ".") " "; }
</style>
</head>
<body>
<p>The following two lines should be identical:</p>
<div><span class="u"></span><span class="r"><span class="i u"></span></span></div>
<div>0 1</div>
</body>
</html>