Expand a div to fill the remaining width

前端 未结 21 1498
一生所求
一生所求 2020-11-21 22:21

I want a two-column div layout, where each one can have variable width e.g.

21条回答
  •  一个人的身影
    2020-11-21 23:06

    The solution to this is actually very easy, but not at all obvious. You have to trigger something called a "block formatting context" (BFC), which interacts with floats in a specific way.

    Just take that second div, remove the float, and give it overflow:hidden instead. Any overflow value other than visible makes the block it's set on become a BFC. BFCs don't allow descendant floats to escape them, nor do they allow sibling/ancestor floats to intrude into them. The net effect here is that the floated div will do its thing, then the second div will be an ordinary block, taking up all available width except that occupied by the float.

    This should work across all current browsers, though you may have to trigger hasLayout in IE6 and 7. I can't recall.

    Demos:

    • Fixed Left: http://jsfiddle.net/A8zLY/5/
    • Fixed Right: http://jsfiddle.net/A8zLY/2/

提交回复
热议问题