mirror of
https://github.com/servo/servo
synced 2026-05-11 09:26:59 +02:00
28 lines
560 B
HTML
28 lines
560 B
HTML
<!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>
|