包含溢出y的div的高度:隐藏不随内容扩展

时间:2012-03-23 12:48:19

标签: html css-float css

所以我在包含div中包含3个div,如:

<div id="contain">
    <div id="leftnav">
    ....
    </div>
    <div id="todo">
    ...
    </div>
    <div id="rightcontent">
    ....
    </div>
</div>

css如下:

div {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
box-sizing: border-box;         /* Opera/IE 8+ */
}

#contain {
    width: 1000px;
    background: #ffffff;
    display: block;
    min-height: 500px;
    height: auto;
    max-height: 1500px;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    }

#leftnav, #todo {
    float: left;
    width: 20%;
    display: block;
    overflow: hidden;
    height: 100%;
    padding: 10px;
    position: absolute;
    left: -200px;
    bottom: 0;
    }
#rightcontent {
    float: right;
    width: 100%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px;
    }

现在,#leftnav和#todo的定位方式是因为如果用户点击链接,它们会根据左边的值向右动画,并且正确显示了所有内容时间。但是,这就是问题所在。

我需要根据#rightcontent div中的内容直到max-height扩展包含div。就目前而言,无论如何都只是不断地将高度保持在500px,并实现滚动条(我不希望发生)。也许我接近这一切都错了,并且放一个溢出:隐藏在它上面仍然保持它设置为500px无论如何。

如果需要,我可以提供更多信息。提前谢谢。

1 个答案:

答案 0 :(得分:2)

看起来你有浮动问题。浮动元素时,它们会打破正常的渲染流。就像测试一样,将float:left添加到#contain div中。您应该看到它展开以包含其子div。

由于这个原因,我通常会尽量避免使用花车。