tor-browser

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

marker-content-022-ref.html (607B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference: ::marker pseudo elements styled with 'content' property</title>
      4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
      5 <style>
      6 .symbol {
      7  list-style-type: disc;
      8 }
      9 .decimal {
     10  list-style-type: decimal;
     11 }
     12 .string {
     13  list-style-type: "string";
     14 }
     15 .content::marker {
     16  content: "content";
     17 }
     18 </style>
     19 <ol>
     20  <li class="symbol"><span><div>foo</div></span></li>
     21  <li class="decimal"><span><div>foo</div></span></li>
     22  <li class="string"><span><div>foo</div></span></li>
     23  <li class="content"><span><div>foo</div></span></li>
     24 </ol>