descriptor-prefix.html (705B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>CSS Test: descriptor prefix</title> 4 <link rel="author" title="Xidorn Quan" href="https://www.upsuper.org/"> 5 <link rel="help" href="https://drafts.csswg.org/css-counter-styles-3/#counter-style-prefix"> 6 <link rel="match" href="descriptor-prefix-ref.html"> 7 <link rel="stylesheet" href="support/test-common.css"> 8 <style type="text/css"> 9 @counter-style a { 10 system: extends upper-roman; 11 prefix: "Appendix "; 12 } 13 section { 14 counter-reset: p -3; 15 } 16 p { 17 counter-increment: p; 18 } 19 p::before { 20 content: counter(p, a); 21 } 22 </style> 23 <ol start="-2" style="list-style-type: a"> 24 <li><li><li><li><li> 25 </ol> 26 <section> 27 <p><p><p><p><p> 28 </section>