Source code

Revision control

Copy as Markdown

Other Tools

<!-- Ref file is based off pseudo-element-overflow-clip-ref.html by mattwoodrow@apple.com -->
<!DOCTYPE html>
<html style="background:pink">
<title>View transitions: overflow:clip with border-radius is respected on pseudo elements</title>
<style>
body {
margin: 0px;
}
div {
width: 200px;
height: 200px;
}
#target {
position: absolute;
width: 200px;
height: 200px;
background: green;
overflow: clip;
overflow-clip-margin: 30px;
border-bottom-right-radius: 30px;
}
#inner {
position: relative;
left: 100px;
top: 100px;
background: blue;
}
.offset {
left: 400px;
}
</style>
<div id="target"><div id="inner"></div></div>
<div id="target" class="offset"><div id="inner"></div></div>
</html>