Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-backgrounds/box-shadow-radius-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Box Shadow Border Radius (Inset)</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<link rel="match" href="box-shadow-radius-002-ref.html">
<meta name="fuzzy" content="maxDifference=0-120; totalPixels=0-1500">
<style>
body {
margin: 0;
}
#target {
width: 200px;
height: 200px;
border: 50px solid transparent;
box-shadow: inset 0 0 0 50px;
border-radius: 125px;
}
</style>
<div id="target"></div>