Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-borders/tentative/border-shape/border-shape-combined-shadow.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="border-shape-combined-shadow-ref.html">
<style>
body {
margin: 0;
}
#target {
width: 190px;
height: 190px;
border-shape: xywh(0% 0% 100% 100%);
position: relative;
background: green;
box-shadow: 10px 20px 0 10px blue, inset 0 0 0 10px purple;
border: 10px solid black;
}
</style>
<div id="target">
</div>