Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
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 padding-bottom: 10px;
8 border-bottom: 10px solid transparent;
9 }
11 .box {
12 background: green;
13 }
14 p {
15 font-size: 150px;
16 line-height: 1;
17 margin: 0;
18 }
19 p + p {
20 height: 200px;
21 }
23 body {
24 height: 200px;
25 width: 300px;
26 -moz-column-width: 150px;
27 -moz-column-gap: 0;
28 -moz-column-fill: auto;
29 border: solid silver;
30 border-style: none solid;
31 }
32 </style>
33 </head>
34 <body>
35 <div class="container">
36 <div class="box">
37 <p> </p>
38 <p> </p>
39 </div>
40 </div>
41 </body>
42 </html>