blob: 093e321f7e452fb87f921bde8107c3fb02ea0858 (
plain) (
blame)
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 href="mailto:7jikai@gmail.com" rel="author" title="Ji Kai">
<link href="mailto:shendayang@baidu.com" rel="reviewer" title="Dayang Shen"> <!-- 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>
|