css3-counter-styles-027-ref.html (1700B)
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 <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."> 10 <style type='text/css'> 11 .test { font-size: 25px; } 12 ol { margin: 0; padding-left: 8em; } 13 ol li { list-style-type: lower-greek; } 14 </style> 15 </head> 16 <body> 17 <p class="instructions">Test passes if the two columns are the same, ignoring the suffix.</p> 18 19 20 <div class="test"><ol><div><bdi>α. </bdi>α.</div> 21 <div><bdi>β. </bdi>β.</div> 22 <div><bdi>γ. </bdi>γ.</div> 23 <div><bdi>δ. </bdi>δ.</div> 24 <div><bdi>ε. </bdi>ε.</div> 25 <div><bdi>ζ. </bdi>ζ.</div> 26 <div><bdi>η. </bdi>η.</div> 27 <div><bdi>θ. </bdi>θ.</div> 28 <div><bdi>ι. </bdi>ι.</div> 29 <div><bdi>κ. </bdi>κ.</div> 30 <div><bdi>λ. </bdi>λ.</div> 31 <div><bdi>μ. </bdi>μ.</div> 32 <div><bdi>ν. </bdi>ν.</div> 33 <div><bdi>ξ. </bdi>ξ.</div> 34 <div><bdi>ο. </bdi>ο.</div> 35 <div><bdi>π. </bdi>π.</div> 36 <div><bdi>ρ. </bdi>ρ.</div> 37 <div><bdi>σ. </bdi>σ.</div> 38 <div><bdi>τ. </bdi>τ.</div> 39 <div><bdi>υ. </bdi>υ.</div> 40 <div><bdi>φ. </bdi>φ.</div> 41 <div><bdi>χ. </bdi>χ.</div> 42 <div><bdi>ψ. </bdi>ψ.</div> 43 <div><bdi>ω. </bdi>ω.</div> 44 </ol></div> 45 46 47 <!--Notes: 48 You will need an appropriate font to run this test. 49 50 To see the ASCII decimal number associated with a row, mouse over it and the number will pop up in a tooltip. 51 --> 52 53 54 </body> 55 </html>