28 lines
599 B
HTML
28 lines
599 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<title>Nested View Transitions root capture with border radius (ref)</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-2/">
|
|
<link rel="author" href="mailto:vmpstr@chromium.org">
|
|
<link rel=stylesheet href="resources/pause-view-transitions.css"></link>
|
|
|
|
<style>
|
|
body { background: lightgreen; }
|
|
#clipper {
|
|
overflow: clip;
|
|
height: 200px;
|
|
width: 100px;
|
|
border-radius: 50%;
|
|
background: rebeccapurple;
|
|
}
|
|
|
|
#i0 {
|
|
background: pink;
|
|
margin-bottom: 10px;
|
|
height: 20px;
|
|
}
|
|
</style>
|
|
|
|
<div id=clipper>
|
|
<div id=i0 class=item></div>
|
|
</div>
|
|
</html>
|