tor-browser

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

img-with-url-function-2.html (636B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Link Parameters - img element with url function and multiple url modifiers</title>
      4 <link rel="author" title="Divyansh Mangal" href="mailto:dmangal@microsoft.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-link-params/#setting-url">
      6 <link rel="help" href="https://www.w3.org/TR/css-values/#url-values"/>
      7 <link rel="match" href="circle-green-with-stroke-ref.html"/>
      8 <style>
      9  .image-with-params {
     10  width:100px;
     11  height:100px;
     12  background-image: url("circle-with-parameters.svg" param(--color, green) param(--stroke, blue));
     13  }
     14 </style>
     15 <div class="image-with-params"></div>