marker-content-016-ref.html (429B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference: ::marker pseudo elements styled with 'content' property</title> 4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com"> 5 <style> 6 ol { 7 list-style-type: "[marker]"; 8 text-decoration: underline; 9 padding-left: 100px; 10 } 11 .inside { 12 list-style-position: inside; 13 } 14 </style> 15 <ol> 16 <li class="outside">outside</li> 17 <li class="inside">inside</li> 18 </ol>