tor-browser

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

fixed-bg-border-radius.html (379B)


      1 <!DOCTYPE html>
      2 <html>
      3 <style>
      4 body { 
      5  height: 100%;
      6  width: 100%;
      7  background: red url('../bugs/repeatable-diagonal-gradient.png') no-repeat fixed;
      8  margin: 0px;
      9  overflow: hidden;
     10 }
     11 div { 
     12  height:200px;
     13  width: 1020px;
     14  background: url('../bugs/repeatable-diagonal-gradient.png') no-repeat fixed;
     15  border-radius: 25px;
     16 }
     17 </style>
     18 <body>
     19 <div >
     20 </div>
     21 </body></html>