blob: 417f6e3d589fc7cfc1fd3e40a972a8ce591aceb7 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>CSS Reftest Reference</title>
<link rel="author" title="L. David Baron" href="https://dbaron.org/">
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
<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>
|