blob: 14b76fb07e76189306ffd148886617bec1cf0100 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<title>View transitions: capture elements with display inline (ref)</title>
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
<link rel="author" href="mailto:vmpstr@chromium.org">
<style>
body {
background: pink;
}
#box {
background: green;
}
</style>
<span id=box>BOX</span>
</html>
|