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/border-shape/border-shape-shadow-circle.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Borders: border-shape circle with box-shadow</title>
<link rel="match" href="border-shape-shadow-circle-ref.html">
<meta name="assert" content="box-shadow on a circle border-shape should match the same shadow drawn around a border-radius circle.">
<style>
#target {
margin: 100px;
width: 100px;
height: 100px;
border-shape: circle(50px at 50% 50%);
box-shadow: 0 0 10px 0 black;
}
</style>
<div id="target"></div>