overflow-clip-margin-008-ref.html (557B)
1 <!doctype html> 2 <html class="reftest"> 3 <meta charset="utf-8"> 4 <title>Overflow-clip-margin has no effect with overflow:scroll and paint containment (ref)</title> 5 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#propdef-overflow-clip-margin"> 6 <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org"> 7 <style> 8 .container { 9 width: 100px; 10 height: 100px; 11 contain: paint; 12 overflow: scroll; 13 } 14 .child { 15 width: 200px; 16 height: 200px; 17 background: lightblue; 18 } 19 </style> 20 <div class=container> 21 <div class=child></div> 22 </div>