Expand a div to take the remaining width

我想要一个双列div布局,其中每个布局都可以具有可变宽度,例如

div {
    float: left;
}
.second {
    background: #ccc;
}
<div>Tree</div>
<div class="second">View</div>

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 it's 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/

  • I just discovered the magic of flex boxes (display: flex). Try this:

    <style>
      #box {
        display: flex;
        float: left;
      }
      #b {
        flex-grow: 100;
        border: 1px solid green;
      }
    </style>
    <div id='box'>
     <div id='a'>Tree</div>
     <div id='b'>View</div>
    </div>
    

    Flex boxes give me the control I've wished css had for 15 years. Its finally here! More info: https://css-tricks.com/snippets/css/a-guide-to-flexbox/


    This would be a good example of something that's trivial to do with tables and hard (if not impossible, at least in a cross-browser sense) to do with CSS.

    If both the columns were fixed width, this would be easy.

    If one of the columns was fixed width, this would be slightly harder but entirely doable.

    With both columns variable width, IMHO you need to just use a two-column table.

    链接地址: http://www.djcxy.com/p/27428.html

    上一篇: 在边框内放置边框,而不是边框

    下一篇: 展开div来获取剩余宽度