tor-browser

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

button-1.html (360B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <style>
      5 button {
      6 position:relative;
      7 left:0px;
      8 top:0px;
      9 width:
     10 200px;
     11 height:100px;
     12 border:none;
     13 background:#00ff00;
     14 -moz-appearance: none;
     15 border-radius: 0 !important;
     16 }
     17 div {
     18 position:absolute;
     19 left:0px;
     20 top:0px;
     21 width:50px;
     22 height:50px;
     23 background:#ff0000;
     24 }
     25 </style>
     26 </head>
     27 <body>
     28 <button><div></div></button>
     29 </body>
     30 </html>