Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<title>View transitions: nested named element in overflow</title>
<style>
body {
background: rebeccapurple;
margin: 0;
}
.outer {
width: 50px;
height: 100px;
position: absolute;
top: 50px;
left: 50px;
border: 2px solid black;
}
.inner {
background: lightblue;
width: 50px;
height: 50px;
view-transition-name: outer;
position: absolute;
top: 25px;
}
.grey {
background: lightgrey;
position: relative;
width: 50px;
height: 50px;
}
</style>
<div class="outer">
<div class="inner"></div>
</div>
<div class="grey"></div>