<!DOCTYPE html>
<html>
<title>View transitions: clip-path larger than element bounds on child of a named element (ref)</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
<link rel="author" href="mailto:[email protected]">
<style>
body {
background: lightpink;
}
.target {
width: 100px;
height: 100px;
background: blue;
}
.child {
width: 10px;
height: 10px;
position: relative;
top: 100px;
left: 100px;
background: green;
clip-path: inset(-10px -100px -50px -20px);
}
</style>
<div class="target">
<div class="child"></div>
</div>