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 (Basic)</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 | <style type="text/css"> |
michael@0 | 8 | #overflow { |
michael@0 | 9 | height: 5in; |
michael@0 | 10 | border: 2pt silver solid; |
michael@0 | 11 | border-top: none; |
michael@0 | 12 | border-bottom: solid 10px blue; |
michael@0 | 13 | } |
michael@0 | 14 | #following { |
michael@0 | 15 | position: absolute; |
michael@0 | 16 | top: 0; left: 0; |
michael@0 | 17 | margin: 0; |
michael@0 | 18 | box-sizing: border-box; |
michael@0 | 19 | width: 100pt; |
michael@0 | 20 | height: 72pt; |
michael@0 | 21 | background: white; |
michael@0 | 22 | border: 2pt black; |
michael@0 | 23 | border-style: none solid; |
michael@0 | 24 | |
michael@0 | 25 | font-size: 10pt; |
michael@0 | 26 | line-height: 10pt; |
michael@0 | 27 | color: blue; |
michael@0 | 28 | } |
michael@0 | 29 | body { |
michael@0 | 30 | height: 2in; |
michael@0 | 31 | width: 300pt; |
michael@0 | 32 | -moz-column-width: 100pt; |
michael@0 | 33 | -moz-column-gap: 0; |
michael@0 | 34 | position: relative; |
michael@0 | 35 | border: solid gray; |
michael@0 | 36 | } |
michael@0 | 37 | </style> |
michael@0 | 38 | </head> |
michael@0 | 39 | <body> |
michael@0 | 40 | <div id="container"> |
michael@0 | 41 | <div id="overflow"> |
michael@0 | 42 | </div> |
michael@0 | 43 | </div> |
michael@0 | 44 | <p id="following"> |
michael@0 | 45 | This paragraph must be in the first column. |
michael@0 | 46 | There must be no red. There must be a blue |
michael@0 | 47 | horizontal line in middle of the third |
michael@0 | 48 | column. |
michael@0 | 49 | </p> |
michael@0 | 50 | </body> |
michael@0 | 51 | </html> |