tor-browser

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

marker-quotes-ref.html (388B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 
      4 <title>CSS Lists reference: use of `quotes` in ::marker</title>
      5 
      6 <link rel="author" href="mailto:jkew@mozilla.com">
      7 
      8 <style>
      9 li:nth-child(1)::marker {
     10  content: "\2018" "1" "\2019" " ";
     11 }
     12 li:nth-child(2)::marker {
     13  content: "«2»" " ";
     14 }
     15 li:nth-child(3)::marker {
     16  content: "‹3›" " ";
     17 }
     18 </style>
     19 
     20 <ol>
     21  <li>one
     22  <li>two
     23  <li>three
     24 </ol>