blob: aeb72f5df2594abd68c1fe4a12423c75f3edda8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Transforms API Test: transform rotateX</title>
<link rel="author" title="loveky" href="mailto:ylzcylx@gmail.com">
<style>
div {
height: 150px;
width: 150px;
}
.container {
background-color: green;
}
</style>
</head>
<body>
<p>You should only see a GREEN box if this test passes!</p>
<div class="container">
</div>
</body>
</html>
|