overflow-clip-margin-009.html (700B)
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 <link rel="match" href="overflow-clip-margin-009-ref.html"> 8 <style> 9 .prop { 10 overflow-clip-margin: 20px; 11 } 12 .container { 13 width: 100px; 14 height: 100px; 15 overflow-clip-margin: inherit; 16 overflow: clip; 17 } 18 .child { 19 width: 200px; 20 height: 200px; 21 background: lightblue; 22 } 23 </style> 24 <div class=prop> 25 <div class=container> 26 <div class=child></div> 27 </div> 28 </div>