Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Borders Test: border-shape overflow clipping reference</title>
<link rel="help" href="https://drafts.csswg.org/css-borders-4/#border-shape">
<style>
body {
margin: 0;
}
.container {
display: flex;
gap: 32px;
padding: 20px;
}
.target {
width: 100px;
height: 100px;
border: 10px solid black;
border-shape: circle(50%);
background: green;
}
</style>
<div class="container">
<div class="target"></div>
<div class="target"></div>
</div>