tor-browser

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

list-style-image-gradients-dynamic-ref.html (577B)


      1 <!doctype html>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html>
      7 <meta charset="utf-8">
      8 <title>CSS Reference: Gradient list markers with dynamic font-size change</title>
      9 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
     10 <style>
     11 li {
     12  list-style-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' style='background: blue'></svg>");
     13 }
     14 ::marker {
     15  font-size: 36px;
     16 }
     17 </style>
     18 <ul>
     19  <li>text</li>
     20  <li>text</li>
     21  <li>text</li>
     22  <li>text</li>
     23 </ul>
     24 </html>