tor-browser

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

css-var-on-length-attributes-06.html (416B)


      1 <!DOCTYPE html>
      2 <title>Usage of css var() on circle radius attribute (units specified)</title>
      3 <link rel="author" title="Divyansh Mangal" href="mailto:dmangal@microsoft.com">
      4 <link rel="match" href="css-linked-parameters/circle-green-ref.html">
      5 <style>
      6  circle {
      7    --radii: 48px
      8  }
      9 </style>
     10 <svg width="100px" height="100px">
     11  <circle cx="50px" cy="50px" r="var(--radii)" fill="green" stroke-width="2"/>
     12 </svg>