marker-content-001.html (604B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Test: ::marker pseudo elements styled with 'content' property</title> 6 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 7 <link rel="match" href="marker-content-001-ref.html"> 8 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo"> 9 <style> 10 li::marker { 11 content: "1.\00a0"; 12 } 13 li:nth-of-type(2)::marker { 14 content: "2.\00a0"; 15 } 16 li:nth-child(3)::marker { 17 content: "3.\00a0"; 18 } 19 span { font-size: 32pt; } 20 </style> 21 </head> 22 <body> 23 <ol><li></li><li>B</li><li><span>C</span></li></ol> 24 </body> 25 </html>