overflow-clip-margin-006.html (614B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Verifies overflow-clip-margin doesn't impact paint effects</title> 4 <link rel="help" href="https://www.w3.org/TR/css-overflow-3/#propdef-overflow-clip-margin"> 5 <link rel="author" title="Scott Violet" href="mailto:sky@chromium.org"> 6 <link rel="match" href="overflow-clip-margin-006-ref.html"> 7 <style> 8 .parent { 9 width: 100px; 10 height: 100px; 11 background-color: green; 12 contain: paint; 13 overflow-clip-margin: 1px; 14 box-shadow: 20px 20px 5px red; 15 } 16 </style> 17 <p>You should see a green box with a red box shadow. 18 <div class="parent"></div>