tor-browser

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

200-200-green.html (557B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <title>
      6 	CSS Values and Units Test:
      7 	Viewport units are interpolated correctly (reference rendering)
      8 </title>
      9 
     10 <link
     11 	rel="author"
     12 	title="François REMY"
     13 	href="mailto:fremycompany.developer@yahoo.fr"
     14 / >
     15 
     16 <style type="text/css">
     17 
     18 		html, body { margin: 0px; padding: 0px; }
     19 
     20 		html { background: white; overflow: hidden; }
     21 		#outer { position: relative; background: green; }
     22 
     23 		#outer { width: 200px; height: 200px; }
     24 
     25 </style>
     26 
     27 </head>
     28 <body>
     29 
     30 <div id="outer"></div>
     31 
     32 </body>
     33 </html>