blob: 93a45d8f80ebb810c69dfc1248b33a6205ce7a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!DOCTYPE HTML>
<title>Testcase for outline around 3-D transform</title>
<style>
html, body { margin: 0; padding: 0; border: none }
div {
width: 100px;
height: 100px;
}
body > div {
margin-top: 200px;
margin-left: 200px;
transform-style: flat;
}
body > div > div {
transform: rotateX(30deg);
transform-origin: 50% 50%;
transform-style: preserve-3d;
border: 5px solid green;
margin: -5px;
}
body > div > div > div {
transform: rotateX(30deg);
width: 50px; margin-left: 20px; margin-top: -5px;
transform-origin: 50% 50%;
transform-style: preserve-3d;
border: 5px solid blue;
}
</style>
<div><div><div></div></div></div>
|