blob: 3726a4fbca59a36b52e2bb10bed62c9d1c2a3686 (
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
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>red box</title>
<style>
#wrapper {
perspective: 0px;
}
#shape {
background-color: red;
width: 200px;
height: 200px;
transform: rotateX(0deg);
}
</style>
</head>
<body>
<div id="wrapper">
<div id="shape">foo</div>
</div>
</body>
</html>
|