Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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>CSS3 Multi-column Layout Test Suite: Overflow Pagination (Multiple)</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 | .container { |
michael@0 | 10 | height: 24pt; |
michael@0 | 11 | background: red; |
michael@0 | 12 | } |
michael@0 | 13 | .overflow { |
michael@0 | 14 | height: 5in; |
michael@0 | 15 | border: 2pt silver solid; |
michael@0 | 16 | border-top: none; |
michael@0 | 17 | border-bottom: solid 10px red; |
michael@0 | 18 | } |
michael@0 | 19 | #following { |
michael@0 | 20 | margin: -72pt 0; |
michael@0 | 21 | height: 72pt; |
michael@0 | 22 | background: white; |
michael@0 | 23 | border: 2pt black; |
michael@0 | 24 | border-style: none solid; |
michael@0 | 25 | |
michael@0 | 26 | font-size: 10pt; |
michael@0 | 27 | line-height: 10pt; |
michael@0 | 28 | color: blue; |
michael@0 | 29 | } |
michael@0 | 30 | .no2 .overflow { |
michael@0 | 31 | height: 4.66667in; |
michael@0 | 32 | border-bottom-color: blue; |
michael@0 | 33 | } |
michael@0 | 34 | .no3 .overflow { |
michael@0 | 35 | height: 4.33333in; |
michael@0 | 36 | position: relative; |
michael@0 | 37 | z-index: -1; |
michael@0 | 38 | } |
michael@0 | 39 | body { |
michael@0 | 40 | height: 2in; |
michael@0 | 41 | width: 300pt; |
michael@0 | 42 | -moz-column-width: 100pt; |
michael@0 | 43 | -moz-column-gap: 0; |
michael@0 | 44 | border: solid gray; |
michael@0 | 45 | } |
michael@0 | 46 | </style> |
michael@0 | 47 | </head> |
michael@0 | 48 | <body> |
michael@0 | 49 | <div class="container no1"> |
michael@0 | 50 | <div class="overflow"> |
michael@0 | 51 | </div> |
michael@0 | 52 | </div> |
michael@0 | 53 | <div class="container no2"> |
michael@0 | 54 | <div class="overflow"> |
michael@0 | 55 | </div> |
michael@0 | 56 | </div> |
michael@0 | 57 | <div class="container no3"> |
michael@0 | 58 | <div class="overflow"> |
michael@0 | 59 | </div> |
michael@0 | 60 | </div> |
michael@0 | 61 | <p id="following"> |
michael@0 | 62 | This paragraph must be in the first column. |
michael@0 | 63 | There must be no red. There must be a blue |
michael@0 | 64 | horizontal line in middle of the third |
michael@0 | 65 | column. |
michael@0 | 66 | </p> |
michael@0 | 67 | </body> |
michael@0 | 68 | </html> |