blob: e0a9046205aeaab17bd62772d73d7f501163af4a (
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>
<html><head>
<title>CSS Reftest Reference</title>
<link href="https://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>
|