blob: 157bb0a08fd940330a54db759df4d64fd6a7ec57 (
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<title>CSS Reftest Reference</title>
<link href="http://dbaron.org/" rel="author" title="L. David Baron" />
<link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor" />
<style>
p {
font-size: 20px;
margin: 0;
height: 0;
width: 100px;
position: relative;
left: 80px;
}
p + p {
font-size: 40px;
position: relative;
left: 160px;
}
</style>
</head>
<body>
<p>One</p>
<p>Two</p>
</body></html>
|