overflow-body-propagation-008-ref.html (649B)
1 <!doctype html> 2 <html><head> 3 <meta charset="utf-8"> 4 <title>CSS Reference: overflow-y:clip propagated from BODY</title> 5 <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1635473"> 6 <style> 7 html { overflow: auto hidden; } 8 body { 9 width: 30px; 10 height: 30px; 11 padding: 10px; 12 margin-left: 100px; 13 margin-top: 100px; 14 } 15 16 div { 17 position: relative; 18 top: -20px; 19 left: -40px; 20 background: blue; 21 height: 10000px; 22 width: 10000px; 23 border-right-width: 20px; 24 border-right-style: solid; 25 border-right-color: red; 26 } 27 </style></head> 28 <body><div></div></body> 29 </html>