|
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"> |
|
3 <head> |
|
4 <title>Content Appended in {ib} Pagination with Overflow Containers</title> |
|
5 |
|
6 <style type="text/css"> |
|
7 body { |
|
8 font-size: 16px; |
|
9 } |
|
10 |
|
11 #colset { |
|
12 height: 400px; |
|
13 width: 450px; |
|
14 -moz-column-width: 150px; |
|
15 -moz-column-gap: 0; |
|
16 border: 3px solid silver; |
|
17 } |
|
18 |
|
19 #x { |
|
20 height: 200px; |
|
21 border-bottom: 3px solid blue; |
|
22 } |
|
23 |
|
24 #overflow { |
|
25 height: 1000px; |
|
26 border-bottom: 3px solid orange; |
|
27 } |
|
28 </style> |
|
29 </head> |
|
30 |
|
31 <body> |
|
32 |
|
33 <div id="colset" |
|
34 ><span id="span" |
|
35 ><div id="x" |
|
36 ><div id="overflow"></div |
|
37 >This must be in the last column, below the orange line. |
|
38 </div |
|
39 >This must be in the first column, below the blue line.</span |
|
40 ></div> |
|
41 |
|
42 </body> |
|
43 |
|
44 </html> |