tor-browser

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

marker-content-006-ref.html (466B)


      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 {
      9  list-style-position: inside;
     10  list-style-type: none;
     11 }
     12 li::before {
     13  content: "ab";
     14 }
     15 li::after {
     16  content: "d";
     17 }
     18 span { font-size: 32pt; }
     19 </style>
     20 </head>
     21 <body>
     22 <ol><li>c</li><li>cB</li><li>c<span>C</span></li></ol>
     23 </body>
     24 </html>