viewport-units-scrollbars-auto-ltr-001-ref.html (632B)
1 <!DOCTYPE html> 2 <title>CSS Values and Units Test: Viewport units and scrollbars</title> 3 <meta charset="UTF-8"> 4 <link rel="author" title="fantasai" href="http://fantasai.inkedblade.net/contact"> 5 6 7 <!-- This reference assumes that a <div> scrollbar looks identical to the root scrollbar. --> 8 <style> 9 html, body { 10 margin: 0; 11 padding: 0; 12 box-sizing: border-box; 13 } 14 html { 15 width: 100%; 16 height: 100%; 17 overflow: hidden; 18 } 19 body { 20 width: 100%; 21 height: 100%; 22 background: white; 23 overflow: auto; 24 } 25 div { 26 width: 200%; 27 height: 200%; 28 border-right: solid blue 4px; 29 border-bottom: solid blue 4px; 30 } 31 </style> 32 33 <div></div>