|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
|
2 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-print"> |
|
3 <head> |
|
4 <title>Multi-column Layout: AbsPos Pagination (Interlaced)</title> |
|
5 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> |
|
6 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property"/> |
|
7 <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units"/> |
|
8 <style type="text/css"> |
|
9 /* If the reftest print size change, this needs to change too. */ |
|
10 html, body, p { |
|
11 margin: 0; |
|
12 padding: 0; |
|
13 } |
|
14 |
|
15 .box { |
|
16 font-size: 10pt; |
|
17 line-height: 10pt; |
|
18 font-family: sans-serif; |
|
19 text-align: center; |
|
20 position: relative; |
|
21 border-bottom: lime 4px solid; |
|
22 margin-top: -4px; |
|
23 height: 2in; |
|
24 } |
|
25 #pageset { |
|
26 width: 100pt; |
|
27 border: silver 2pt; |
|
28 border-style: none solid; |
|
29 height: 6in; |
|
30 } |
|
31 |
|
32 .n1 { |
|
33 margin: 0; |
|
34 height: 1in; |
|
35 } |
|
36 </style> |
|
37 </head> |
|
38 <body> |
|
39 <div id="pageset"> |
|
40 <p class="box n1"> |
|
41 There must be 3 pages, a single green line on each page, and no red. |
|
42 </p> |
|
43 <p class="box"></p> |
|
44 <p class="box"></p> |
|
45 </div> |
|
46 </body> |
|
47 </html> |