OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>Changing the contents of a table cell, increasing column height</ title> | |
5 </head> | |
6 <body> | |
7 <p>You should see the text "first column" once in the first column, and the text "second | |
8 column" twice in the second column.</p> | |
9 <div style="-webkit-columns:2; columns:2; x-webkit-column-rule:1px solid ; xcolumn-rule:1px solid; orphans:1; widows:1; xbackground:yellow;"> <!-- FIXME: should ideally paint background and column rules here, to measure the column he ight, but the balancing machinery in the old multicol implementation doesn't do it properly. --> | |
10 first column<br> | |
11 <br> | |
12 second column<br> | |
13 second column | |
14 </div> | |
15 </body> | |
16 </html> | |
OLD | NEW |