Source code

Revision control

Copy as Markdown

Other Tools

<!doctype html>
<title>Nested View Transitions: Rounded border clipper</title>
<style>
#clipper {
overflow: clip;
height: 200px;
width: 100px;
border-radius: 20px;
}
.item {
will-change: transform;
background: green;
position: relative;
height: 50px;
top: 50px;
}
</style>
<div id=clipper>
<div class=item></div>
</div>