marker-content-003-ref.html (444B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Reference: ::marker pseudo elements styled with 'content' property and display:grid</title> 6 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 7 <style> 8 li { 9 list-style-type: 'X'; 10 background: grey; 11 } 12 li::marker { 13 padding-right: 10px; 14 } 15 span { font-size: 32pt; } 16 </style> 17 </head> 18 <body> 19 <ol><li></li><li>B</li><li><span>C</span></li></ol> 20 </body> 21 </html>