OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../../resources/check-layout.js"></script> |
| 3 <p>Min-height should make the multicol container taller if min-height is greater
than the content |
| 4 height, but it should not affect column balancing. We specify column-fill:au
to here, but the |
| 5 columns should still be balanced, because height is auto.</p> |
| 6 <p>Below there should be a yellow square with the word "OKAY" inside - from left
to right, with large letter spacing.</p> |
| 7 <div id="test" style="position:relative; -webkit-columns:8; -webkit-column-gap:0
; column-fill:auto; width:160px; min-height:160px; line-height:20px; background:
yellow;"> |
| 8 <div data-offset-y="0">O</div> |
| 9 <div data-offset-y="0">K</div> |
| 10 <div data-offset-y="0">A</div> |
| 11 <div data-offset-y="0">Y</div> |
| 12 </div> |
| 13 <script> |
| 14 checkLayout("#test"); |
| 15 </script> |
OLD | NEW |