tor-browser

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

marker-content-017-ref.html (455B)


      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 img {
      7  display: list-item;
      8  list-style-type: "[marker]";
      9 }
     10 img.inside {
     11  list-style-position: inside;
     12 }
     13 </style>
     14 <ol>
     15  <img src="about:invalid" alt="alt" class="inside" />
     16  <img src="about:invalid" alt="alt" />
     17  <li value="3">item</li>
     18 </ol>