| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <title>auto-height multicol with break</title> | 4 <title>auto-height multicol with break</title> |
| 5 <style> | 5 <style> |
| 6 .mc { float:left; width:6em; padding:0 0.5em; } | 6 .mc { float:left; width:6.5em; padding:0 0.5em; } |
| 7 .gap { float:left; width:1em; } | 7 .gap { float:left; width:1em; } |
| 8 </style> | 8 </style> |
| 9 </head> | 9 </head> |
| 10 <body style="min-width:40em;"> | 10 <body style="min-width:40em;"> |
| 11 <div style="float:left; background:olive;"> | 11 <div style="float:left; background:olive;"> |
| 12 <div class="mc"> | 12 <div class="mc"> |
| 13 first column<br> | 13 first column<br> |
| 14 </div> | 14 </div> |
| 15 <div class="gap"> </div> | 15 <div class="gap"> </div> |
| 16 <div class="mc"> | 16 <div class="mc"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 39 fourth column<br> | 39 fourth column<br> |
| 40 </div> | 40 </div> |
| 41 <div class="gap"> </div> | 41 <div class="gap"> </div> |
| 42 <div class="mc"> | 42 <div class="mc"> |
| 43 fifth column<br> | 43 fifth column<br> |
| 44 fifth column<br> | 44 fifth column<br> |
| 45 </div> | 45 </div> |
| 46 </body> | 46 </body> |
| 47 </html> | 47 </html> |
| 48 | 48 |
| OLD | NEW |