clip-path-inset-round-percent.html (627B)
1 <!doctype html> 2 <title>inset() with percentages resolves against reference box, not inset rect</title> 3 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1704742"> 4 <link rel="help" href="https://drafts.csswg.org/css-shapes/#basic-shape-functions"> 5 <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> 6 <link rel="author" href="https://mozilla.org" title="Mozilla"> 7 <link rel="match" href="clip-path-inset-round-percent-ref.html"> 8 <style> 9 body { 10 margin: 0; 11 } 12 div { 13 width: 100px; 14 height: 100px; 15 background: deeppink; 16 clip-path: inset(80% 0 0 round 8%) 17 } 18 </style> 19 <div></div>