1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <style type="text/css">
oL { counter-reset: decimal }
LI { display: block }
oL LI oL{ counter: inherit }
ol LI:before { content: counter(decimal) " "; counter-increment: decimal }
LI oL LI:before { content: counter(decimal) "-" counter(decimal) " "; counter-increment: decimal }
</style>
</head>
<body>
<input type="button" onclick="self.find()" value="chercher" />
<oL>
<LI>item
<LI>item
<oL>
<LI>item
<LI>item
<LI>item
<oL>
<LI>item
</oL>
<oL>
<LI>
</oL>
<LI>item
</oL>
<LI>item
<LI>item
</oL>
<oL>
<LI>item
<LI>item
</oL>
</body>
</html> |