counter-suffix.html (700B)
1 <!DOCTYPE html> 2 <link rel="match" href="counter-suffix-ref.html"> 3 <link rel="help" href="https://drafts.csswg.org/css-counter-styles/"/> 4 <style> 5 ol, li { margin: 0; padding: 0; line-height: 150%; } 6 #wrapper { width: 10em; } 7 ol { padding: 0 3em; } 8 .dec { list-style-type: decimal; } 9 .heb { list-style-type: hebrew; } 10 .cjk { list-style-type: cjk-decimal; } 11 .kor { list-style-type: korean-hangul-formal; } 12 </style> 13 <div id="wrapper"> 14 <ol class="dec"><li>foo<li>bar</ol> 15 <ol class="heb"><li>foo<li>bar</ol> 16 <ol class="cjk"><li>foo<li>bar</ol> 17 <ol class="kor"><li>foo<li>bar</ol> 18 <ol class="dec" dir="rtl"><li>foo<li>bar</ol> 19 <ol class="heb" dir="rtl"><li>foo<li>bar</ol> 20 </div>