blob: d17e21db7bd9f101ff6369cdeed6c3ca5681b19f (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS3 Multi-column Layout Test Suite: Overflow Pagination (Interlaced [Simplified])</title>
<link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/>
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property"/>
<link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units"/>
<style type="text/css">
body, html {
margin: 0;
padding: 0;
}
.following {
margin: 0 0 .5in;
height: .5in;
background: white;
font-size: 10pt;
line-height: 10pt;
color: navy;
}
.fno1 {
position: absolute;
top: 1.5in; left: 0;
width: 100pt;
border-top: 4px solid blue;
}
.fno2 {
position: absolute;
top: .5in; left: 100pt;
width: 100pt;
}
.overflow {
height: 4in;
width: 200pt;
border-bottom: 4px solid blue;
}
body {
height: 2.5in;
width: 300pt;
column-width: 100pt;
column-gap: 0;
column-fill: auto;
border: solid gray;
position: relative;
}
</style>
</head>
<body>
<div class="overflow">
</div>
<div class="following fno1">
This paragraph must be in the first column.
There must be no red on any page.
</div>
<p class="following fno2">
This paragraph must be in the second column.
There must be an unbroken blue line across
all three columns.
</p>
</body>
</html>
|