blob: c82c51026f2a12170d57858a64311507b651f670 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<style>
div {
position: absolute;
top: 200px; left: 200px;
width: 600px;
height: 500px;
background: yellow;
opacity: 0.3;
transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
transform: translate(-200px, -200px);
-webkit-transform: translate(-200px, -200px);
transform: translate(-200px, -200px);
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|