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