|
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>Pagination with Borders</title> |
|
5 <style type="text/css"> |
|
6 .container { |
|
7 height: 500px; |
|
8 background: lime; |
|
9 border: 10px green; |
|
10 border-style: none solid; |
|
11 } |
|
12 .long { |
|
13 background: aqua; |
|
14 width: 40px; |
|
15 height: 500px; |
|
16 } |
|
17 |
|
18 .body { |
|
19 height: 200px; |
|
20 width: 300px; |
|
21 -moz-column-width: 100px; |
|
22 -moz-column-gap: 0; |
|
23 -moz-column-fill: auto; |
|
24 border: solid silver; |
|
25 border-style: none solid; |
|
26 background: yellow; |
|
27 } |
|
28 </style> |
|
29 </head> |
|
30 <body> |
|
31 <div class="body"> |
|
32 <div class="container"> |
|
33 <div class="long"> |
|
34 </div> |
|
35 </div> |
|
36 </div> |
|
37 </body> |
|
38 </html> |