css3-counter-styles-027.html (1631B)
1 <!DOCTYPE html> 2 <html lang="en" > 3 <head> 4 <meta charset="utf-8"/> 5 <title>lower-greek, simple</title> 6 <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'> 7 <link rel='help' href='http://www.w3.org/TR/css-counter-styles-3/#simple-alphabetic'> 8 <link rel="reviewer" title="Chris Lilley" href="mailto:chris@w3.org" /> 9 <link rel='match' href='css3-counter-styles-027-ref.html'> 10 <meta name="assert" content="Setting list-style-type to lower-greek will produce list numbering for the basic alphabet as described in the CSS3 Counter Styles module."> 11 <style type='text/css'> 12 .test { font-size: 25px; } 13 ol { margin: 0; padding-left: 8em; } 14 ol { list-style-type: lower-greek; list-style-position: inside; } 15 </style> 16 </head> 17 <body> 18 <p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p> 19 20 21 <div class="test"><ol><li title='1'>α.</li> 22 <li title='2'>β.</li> 23 <li title='3'>γ.</li> 24 <li title='4'>δ.</li> 25 <li title='5'>ε.</li> 26 <li title='6'>ζ.</li> 27 <li title='7'>η.</li> 28 <li title='8'>θ.</li> 29 <li title='9'>ι.</li> 30 <li title='10'>κ.</li> 31 <li title='11'>λ.</li> 32 <li title='12'>μ.</li> 33 <li title='13'>ν.</li> 34 <li title='14'>ξ.</li> 35 <li title='15'>ο.</li> 36 <li title='16'>π.</li> 37 <li title='17'>ρ.</li> 38 <li title='18'>σ.</li> 39 <li title='19'>τ.</li> 40 <li title='20'>υ.</li> 41 <li title='21'>φ.</li> 42 <li title='22'>χ.</li> 43 <li title='23'>ψ.</li> 44 <li title='24'>ω.</li> 45 </ol></div> 46 47 48 <!--Notes: 49 You will need an appropriate font to run this test. 50 51 To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip. 52 --> 53 54 55 </body> 56 </html>