1

我有 2 个 div,我需要它们的最小尺寸约为 300 像素。我需要左 div 伸展到可用空间,但是如果窗口尺寸太小,那么右 div 需要下降到下方。这是我目前拥有的,但我不确定要改变什么。

<style>
.bbleft {
    min-height: 237px;
    overflow:hidden;
}

.bbright {
    float: right;
    width: 300px;
    min-height: 237px;
    margin-left: 10px;
}
</style>
4

3 回答 3

1

这就是你需要的

http://jsfiddle.net/fxWg7/790/

HTML

<div class="container">
    <div class="left">
        content fixed width
    </div>
    <div class="right">
        content flexible width
    </div>
</div>

CSS

.container {
   height: auto;
   overflow: hidden;
}

.left {
    width: 300px;
    float: left;
    background: #aafed6;
}

.right {
    float: none; /* not needed, just for clarification */
    background: #e8f6fe;
    /* the next props are meant to keep this block independent from the other floated one */
    min-width:300px;
    width: auto;
    max-width:500px; /* not neccessary */
    overflow: hidden;
}
于 2013-07-24T06:11:11.573 回答
1

小提琴

一种css3方法..

灵活的左 div。页面太小时右 div 会下降。左 div 填充了其余的空间。

HTML

<div class="left"></div>
<div class="right"></div>

CSS

body{
    width:100%;
}
body div{
    min-width:300px;
    float:left;
}

.left{
    width: calc( 100% - 310px );
}
于 2013-07-24T06:15:19.520 回答
0

简单用这个

.bbleft {
    min-height: 237px;
    overflow:hidden;
float:left;width:100%;
}
于 2013-07-24T06:02:46.283 回答