Source code
Revision control
Copy as Markdown
Other Tools
<head>
<title>CSS Test: Counter properties on 'content: none' pseudo-elements</title>
<link rel="match" href="counters-hidden-000-ref.html" />
<style type="text/css">
body { white-space: nowrap; }
div { counter-reset: c }
#one:before { counter-increment: c }
#two:before { content: counter(c) }
</style>
</head>
<body>
<p>The following should be identical:</p>
<div><span id="one"></span><span id="two"></span></div>
<div>0</div>
</body>
</html>