Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>View Transitions: Clip on target in callback does not clip root (Ref)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#container {
width: 200px;
height: 200px;
background: blue;
border: 5px solid black;
}
#target {
margin-top: 150px;
width: 100px;
height: 100px;
background: green;
}
</style>
<div id="container">
<div id="target"></div>
</div>