<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Style-Type" content="text/css"></meta> | |
<style type="text/css"> | |
body { white-space: nowrap; } | |
div { text-transform: lowercase; } | |
#test { counter-reset: c; } | |
#test span { counter-increment: c; } | |
#test span:before { content: counter(c, upper-roman); } | |
</style> | |
</head> | |
<body> | |
<p>The following two lines should look the same:</p> | |
<div id="test"> | |
<span></span> | |
<span></span> | |
<span></span> | |
<span></span> | |
</div> | |
<div> | |
I | |
II | |
III | |
IV | |
</div> | |
</body> | |
</html> |