20 lines
384 B
HTML
20 lines
384 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<title>View transitions: root element style changes during transition</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
|
|
<link rel="author" href="mailto:vmpstr@chromium.org">
|
|
<style>
|
|
#target {
|
|
width: 100px;
|
|
height: 100px;
|
|
contain: paint;
|
|
background: green;
|
|
}
|
|
|
|
body {
|
|
background: grey;
|
|
}
|
|
</style>
|
|
|
|
<div id=target></div>
|
|
|