blob: 455daa7aeabc3fba876eda3d1807b4ddca98c4f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS test reference</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
div
{
color: green;
font-size: 30px;
font-family: Ahem;
line-height: 1.5;
}
</style>
<p>Test passes if there are 2 green stripes and if the top stripe is half the width of the bottom stripe.
<div>12345<br>1234567890</div>
|