tor-browser

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

gradient-content-box.html (611B)


      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-content-box-ref.html">
      8  <meta name="assert" content="The background-origin: content-box; statement is understood.">
      9  <style>
     10 #x {
     11  background-origin: content-box;
     12  width: 200px;
     13  height: 200px;
     14  padding: 40px;
     15  background-image: repeating-linear-gradient(to bottom right, white, black, white 30px);
     16 }
     17  </style>
     18 </head>
     19 <body>
     20  <div id="x"></div>
     21 </body>
     22 </html>