tor-browser

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

1151306-1-ref.html (340B)


      1 <!DOCTYPE html>
      2 <html lang="en">
      3 <meta charset="utf-8">
      4 <title>The div should have a white filling.</title>
      5 
      6 <style>
      7 
      8 html, body {
      9  margin: 0;
     10  padding: 0;
     11 }
     12 
     13 html {
     14  background-color: white;
     15 }
     16 
     17 body {
     18  padding: 10px;
     19 }
     20 
     21 div {
     22  width: 50px;
     23  height: 50px;
     24  box-sizing: border-box;
     25  border: 1px solid black;
     26 }
     27 
     28 </style>
     29 
     30 <div></div>