Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<title>CSS Borders: border-shape with transparent background ref</title>
<style>
body { padding: 50px; }
#target {
width: 100px; height: 100px;
background: transparent;
border-radius: 50px;
box-shadow: 0 0 0 20px black;
}
</style>
<body>
<div id="target"></div>
</body>
</html>