vh-support-margin.html (779B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title> 6 CSS Values and Units Test: 7 Viewports units are supported in margin properties 8 </title> 9 <meta name="assert" content=" 10 Viewports units are supported in margin properties 11 " /> 12 13 <link 14 rel="author" 15 title="François REMY" 16 href="mailto:francois.remy.pub@outlook.com" 17 / > 18 19 <link rel="help" href="http://www.w3.org/TR/css3-values/#viewport-relative-lengths"> 20 21 <link 22 rel="match" 23 href="reference/all-green.html" 24 /> 25 26 <style type="text/css"> 27 28 html, body { margin: 0px; padding: 0px; height: 100%; } 29 30 html { background: green; } 31 #target { background: red; width: 100%; height: 100%; margin-left: -100vw; margin-top: -100vh; } 32 33 </style> 34 35 </head> 36 <body> 37 38 <div id="target"></div> 39 40 </body> 41 </html>