20 lines
335 B
HTML
20 lines
335 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<title>View transitions: transform-style: preserve-3d is respected on pseudo elements</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-view-transitions-1/">
|
|
|
|
<style>
|
|
body {
|
|
background: pink;
|
|
}
|
|
div {
|
|
width: 200px;
|
|
height: 200px;
|
|
background: green;
|
|
}
|
|
|
|
</style>
|
|
|
|
<div id="target"></div>
|
|
|
|
</html>
|