tor-browser

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

marker-content-002.html (525B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>CSS Test: ::marker pseudo elements styled with 'content' property</title>
      6 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
      7 <link rel="match" href="marker-content-002-ref.html">
      8 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
      9 <style>
     10 li::marker {
     11  content: "a" counters(list-item, ".") "b";
     12 }
     13 span { font-size: 32pt; }
     14 </style>
     15 </head>
     16 <body>
     17 <ol><li></li><li>B</li><li><span>C</span></li></ol>
     18 </body>
     19 </html>