tor-browser

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

gradient-border-box.html (665B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>Gradient Background aligned to Content Box</title>
      6  <link rel="help" href="https://www.w3.org/TR/css-backgrounds-3/#the-background-origin">
      7  <link rel="match" href="gradient-border-box-ref.html">
      8  <meta name="assert" content="The background-origin: border-box; statement is understood.">
      9  <style>
     10 #x {
     11  background-origin: border-box;
     12  width: 200px;
     13  height: 200px;
     14  border-style: solid;
     15  border-width: 40px;
     16  border-color: transparent;
     17  background-image: repeating-linear-gradient(to bottom right, white, black, white 30px);
     18 }
     19  </style>
     20 </head>
     21 <body>
     22  <div id="x"></div>
     23 </body>
     24 </html>