tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

marker-content-004-ref.html (544B)


      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:flex</title>
      6 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      7 <style>
      8 body { margin-left: 100px; }
      9 li {
     10  list-style-type: 'FAIL';
     11  background: grey;
     12 }
     13 li::marker {
     14  content: "X";
     15  display: block;
     16  width: 100px;
     17  text-align: start;
     18  background: lime;
     19 }
     20 span { font-size: 32pt; }
     21 </style>
     22 </head>
     23 <body>
     24 <ol><li></li><li>B</li><li><span>C</span></li></ol>
     25 </body>
     26 </html>