overflow-clip-margin-009-ref.html (567B)
1 <!doctype html> 2 <html class="reftest"> 3 <meta charset="utf-8"> 4 <title>Overflow-clip-margin can be inherited even if it has no effect on specified element</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 overflow-clip-margin: 20px; 12 overflow: clip; 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>