blob: a21231178a0e22fae929ea7734d975ca771be242 (
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
|
<!DOCTYPE html>
<html><head>
<title>CSS Reftest Reference</title>
<link href="mailto:ctalbert@mozilla.com" rel="author" title="Clint Talbert">
<link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor">
<style>
body > div {
background: green;
height: 100px;
width: 100px;
}
span {
background: yellow;
}
body > div > div {
position: relative;
top: 150px;
left: 20px;
}
</style>
</head>
<body>
<div>
<div><span>span 1</span></div>
</div>
<span>span 2</span>
</body></html>
|