Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
michael@0 | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
michael@0 | 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>Multi-column Layout: AbsPos Pagination (Interlaced)</title> |
michael@0 | 5 | <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"/> |
michael@0 | 6 | <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#the-height-property"/> |
michael@0 | 7 | <link rel="help" href="http://www.w3.org/TR/CSS21/syndata.html#length-units"/> |
michael@0 | 8 | <style type="text/css"> |
michael@0 | 9 | html { |
michael@0 | 10 | background: white; |
michael@0 | 11 | } |
michael@0 | 12 | |
michael@0 | 13 | .following { |
michael@0 | 14 | margin: 0; |
michael@0 | 15 | font-size: 10pt; |
michael@0 | 16 | line-height: 10pt; |
michael@0 | 17 | font-family: sans-serif; |
michael@0 | 18 | text-align: center; |
michael@0 | 19 | width: 100pt; |
michael@0 | 20 | } |
michael@0 | 21 | #colset { |
michael@0 | 22 | width: 300pt; |
michael@0 | 23 | height: 2in; |
michael@0 | 24 | border: silver 2pt; |
michael@0 | 25 | border-style: none solid; |
michael@0 | 26 | } |
michael@0 | 27 | #redline { |
michael@0 | 28 | width: 303pt; |
michael@0 | 29 | border-top: 4px solid lime; |
michael@0 | 30 | margin-top: -1in; |
michael@0 | 31 | position: relative; |
michael@0 | 32 | z-index: -1; |
michael@0 | 33 | } |
michael@0 | 34 | </style> |
michael@0 | 35 | </head> |
michael@0 | 36 | <body> |
michael@0 | 37 | <div id="colset"> |
michael@0 | 38 | <div> |
michael@0 | 39 | <div class="ocontainer"> |
michael@0 | 40 | <div class="overflow o1"></div> |
michael@0 | 41 | </div> |
michael@0 | 42 | <div class="container"> |
michael@0 | 43 | <div class="overflow a1"></div> |
michael@0 | 44 | <div class="overflow a2"></div> |
michael@0 | 45 | <div class="overflow a3"></div> |
michael@0 | 46 | <div class="overflow a4"></div> |
michael@0 | 47 | </div> |
michael@0 | 48 | <div class="container"> |
michael@0 | 49 | <div class="overflow b1"></div> |
michael@0 | 50 | <div class="overflow b2"></div> |
michael@0 | 51 | <div class="overflow b3"></div> |
michael@0 | 52 | <div class="overflow b4"> |
michael@0 | 53 | <div class="overflow child1"></div> |
michael@0 | 54 | <div class="overflow child2"></div> |
michael@0 | 55 | </div> |
michael@0 | 56 | <div class="overflow b5"></div> |
michael@0 | 57 | <div class="overflow b6"></div> |
michael@0 | 58 | </div> |
michael@0 | 59 | </div> |
michael@0 | 60 | <p class="following f1"> |
michael@0 | 61 | There must be a single green line and no red. |
michael@0 | 62 | </p> |
michael@0 | 63 | <div class="container"> |
michael@0 | 64 | <div class="overflow c1"></div> |
michael@0 | 65 | <div class="overflow c2"></div> |
michael@0 | 66 | <div class="overflow c3"></div> |
michael@0 | 67 | <div class="overflow c4"></div> |
michael@0 | 68 | </div> |
michael@0 | 69 | <div class="following f2"></div> |
michael@0 | 70 | </div> |
michael@0 | 71 | <div id="redline"></div> |
michael@0 | 72 | </body> |
michael@0 | 73 | </html> |