tor-browser

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

marker-content-001c.html (647B)


      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-001-ref.html">
      8 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
      9 <style>
     10 li::marker {
     11  content: "1.\00a0";
     12  display: block;
     13  margin: 0 auto 0 auto;
     14 }
     15 li:nth-of-type(2)::marker {
     16  content: "2.\00a0";
     17 }
     18 li:nth-child(3)::marker {
     19  content: "3.\00a0";
     20 }
     21 span { font-size: 32pt; }
     22 </style>
     23 </head>
     24 <body>
     25 <ol><li></li><li>B</li><li><span>C</span></li></ol>
     26 </body>
     27 </html>