tor-browser

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

inline-svg-margin-padding-border-ref.html (574B)


      1 <!DOCTYPE html>
      2 <html xmlns="http://www.w3.org/1999/xhtml">
      3 <head>
      4 <title>CSS Test Reference: Scroll multiple background images that are positioned</title>
      5 <link rel="author" title="Google" href="http://www.google.com/" />
      6 <style type="text/css">
      7 
      8 * {
      9    margin: 0;
     10    padding: 0;
     11 }
     12 
     13 #container {
     14    margin: 10px;
     15    padding: 10px;
     16    border: 10px solid green;
     17 }
     18 
     19 #container div {
     20    width: 60px;
     21    height: 60px;
     22    background: green;
     23 }
     24 
     25 </style>
     26 </head>
     27 <body>
     28 <div id="container" style="margin: 10px; width: 60px; height: 60px;"><div></div></div>
     29 </body>
     30 </html>