tor-browser

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

marker-content-008-ref.html (707B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Reference: ::marker pseudo elements styled with 'content' property</title>
      6 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      7 <style>
      8 li { list-style-type: "ab"; }
      9 #t1 > li { list-style-type: "ab"; }
     10 #t2 > li::before { content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAMCAIAAAD3UuoiAAAAGklEQVQoz2Nk%2BP%2BfgRqAiYFKYNSgUYOGp0EA%2BQMCFrJdTgsAAAAASUVORK5CYII%3D); margin-left: -24px; }
     11 li::after {
     12  content: "d";
     13 }
     14 span { font-size: 32pt; }
     15 </style>
     16 </head>
     17 <body>
     18 <ol id="t1"><li>c</li><li>cB</li><li>c<span>C</span></li></ol>
     19 <ol id="t2"><li>c</li><li>cB</li><li>c<span>C</span></li></ol>
     20 </body>
     21 </html>