blob: 5c65f5677d8c043402dcda23c96506dc783dff37 (
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>
<title>CSS Transforms Reference File</title>
<link rel="author" title="Ji Kai" href="mailto:7jikai@gmail.com">
<link rel="reviewer" title="Dayang Shen" href="mailto:shendayang@baidu.com"> <!-- 2013-09-04 -->
<style>
div {
background-color: green;
position: absolute;
top: 100px;
width: 25px;
height: 100px;
}
#left {
left: 100px;
}
#right {
left: 175px;
}
</style>
</head>
<body>
<p>The test passes if there are two green rectangles.</p>
<div id="left"></div>
<div id="right"></div>
</body>
</html>
|