system-cyclic.html (853B)
1 <!DOCTYPE html> 2 <meta charset="UTF-8"> 3 <title>CSS Test: system cyclic</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/#cyclic-system"> 6 <link rel="match" href="system-cyclic-ref.html"> 7 <link rel="stylesheet" href="support/test-common.css"> 8 <style type="text/css"> 9 @counter-style a { 10 system: cyclic; 11 symbols: \2023; 12 suffix: ""; 13 } 14 @counter-style b { 15 system: cyclic; 16 symbols: \2020 \2021; 17 suffix: ""; 18 } 19 @counter-style c { 20 system: cyclic; 21 symbols: \2021 \2022 \2023; 22 suffix: ""; 23 } 24 </style> 25 <ol start="-2" style="list-style-type: a"> 26 <li><li><li><li><li> 27 </ol> 28 <ol start="-2" style="list-style-type: b"> 29 <li><li><li><li><li> 30 </ol> 31 <ol start="-2" style="list-style-type: c"> 32 <li><li><li><li><li> 33 </ol>