blob: 0dd93d3f7b5e967c98589394f3a5d8dfd129fdc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<title>CSS Test (Transforms): Transform and perspective with w negative</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Google" href="http://www.google.com/">
<style>
div {
width: 100px;
height: 100px;
transform: rotateY(44deg);
background: fuchsia;
transform-origin: 100px 0;
will-change: transform;
}
</style>
<div></div>
|