descriptor-prefix.html 413 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <link rel="stylesheet" href="test-common.css">
  3. <style type="text/css">
  4. @counter-style a {
  5. system: extends upper-roman;
  6. prefix: "Appendix ";
  7. }
  8. section {
  9. counter-reset: p -3;
  10. }
  11. p {
  12. counter-increment: p;
  13. }
  14. p::before {
  15. content: counter(p, a);
  16. }
  17. </style>
  18. <ol start="-2" style="list-style-type: a">
  19. <li><li><li><li><li>
  20. </ol>
  21. <section>
  22. <p><p><p><p><p>
  23. </section>