marker-tab-size-ref.html (961B)
1 <!DOCTYPE html> 2 <meta charset="utf-8" /> 3 <title>CSS Reftest Reference</title> 4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" /> 5 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 6 <style> 7 div { 8 float: left; 9 font: 25px/1 Ahem; 10 } 11 .inside { 12 list-style-position: inside; 13 width: 250px; 14 } 15 .outside { 16 list-style-position: outside; 17 width: 100px; 18 margin-left: 150px; 19 } 20 ol { 21 padding: 0; 22 } 23 .marker-string { 24 list-style-type: "X p"; 25 } 26 .marker-content::marker { 27 content: "X p p"; 28 } 29 </style> 30 <div class="inside"> 31 <ol> 32 <li class="marker-string">É</li> 33 <li class="marker-content">É</li> 34 </ol> 35 <ol> 36 <li class="marker-string">É</li> 37 <li class="marker-content">É</li> 38 </ol> 39 </div> 40 <div class="outside"> 41 <ol> 42 <li class="marker-string">É</li> 43 <li class="marker-content">É</li> 44 </ol> 45 <ol> 46 <li class="marker-string">É</li> 47 <li class="marker-content">É</li> 48 </ol> 49 </div>