OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <p>Given a float followed by a regular block with the same height as the float,
then a block B with |
| 3 a negative margin, followed by a block with with overflow:hidden. Check that
the |
| 4 overflow:hidden block doesn't overlap with the float, and also that it takes
up all available |
| 5 space (but not more) beside the float. There's an empty collapse-through blo
ck before B, so |
| 6 that our initial logical top estimate fails and we have to relayout. When la
ying out again, we |
| 7 have to detect that the float that we first thought didn't affect the overfl
ow:hidden block now |
| 8 affects it.</p> |
| 9 <p>Below there should be an olive square to the left of a navy square. The navy
square should be |
| 10 slightly larger than the olive one, and there should be spacing between them
. They should not |
| 11 overlap.</p> |
| 12 <div style="float:left; width:8em; height:8em; margin-right:1em; background:oliv
e;"></div> |
| 13 <div style="float:left; width:9em; height:9em; background:navy;"></div> |
OLD | NEW |