marker-word-spacing-ref.html (1369B)
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-disc { 24 list-style-type: disc; 25 } 26 .marker-decimal { 27 list-style-type: "2.\A0 \A0 "; 28 } 29 .marker-string { 30 list-style-type: "X\A0 \A0 p"; 31 } 32 .marker-content::marker { 33 content: "Xp\A0 \A0 p"; 34 } 35 </style> 36 <div class="inside"> 37 <ol> 38 <li class="marker-disc">É</li> 39 <li class="marker-decimal">É</li> 40 <li class="marker-string">É</li> 41 <li class="marker-content">É</li> 42 </ol> 43 <ol> 44 <li class="marker-disc">É</li> 45 <li class="marker-decimal">É</li> 46 <li class="marker-string">É</li> 47 <li class="marker-content">É</li> 48 </ol> 49 </div> 50 <div class="outside"> 51 <ol> 52 <li class="marker-disc">É</li> 53 <li class="marker-decimal">É</li> 54 <li class="marker-string">É</li> 55 <li class="marker-content">É</li> 56 </ol> 57 <ol> 58 <li class="marker-disc">É</li> 59 <li class="marker-decimal">É</li> 60 <li class="marker-string">É</li> 61 <li class="marker-content">É</li> 62 </ol> 63 </div>