0

我的 HTML 结构是这样的:

<div id="pagewrap">

    <div id="header">
    </div>

    <div id="content">

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

     </div>
<div id="footer"></div>
</div>

当内容 div 中的任何一个 div 的大小与其他 div 的大小相同时,我想增加内容 div 的大小。

我怎样才能做到这一点?

这就是我的css的样子:

  #pagewrap
    {
     width: 100%;
     height: 100%;
    }

    #header{width: 100%;height:97px;position:relative;}

    #left{position:absolute;left:0px;width:20%;background-color:#1C2326;}

    #right{position:absolute;right:0px;width:80%;background-color:#2D3538;color:#fff;}

    #footer{clear:both;height: 80px;background-color:#72D27C;}
4

2 回答 2

1

如果您希望包装器受内容尺寸的影响,则不能position: absolute在内部 div 中使用。尝试浮动它们(并添加overflow: hidden到容器中以清除内部浮动):

#pagewrap { width: 100%; height: 100%; }
#content { overflow: hidden; }
#header { width: 100%; height: 97px; position:relative; }
#left { float: left; width: 20%; background-color: #1C2326; }
#right { float: left; width: 80%; background-color: #2D3538; color: #fff; }
#footer  { height: 80px; background-color: #72D27C; }

http://jsfiddle.net/h4hbx/

于 2013-10-04T18:01:35.870 回答
0

我想也许这个小提琴更接近你的想法。可以让左div(静态位置,无浮动)设置内容的高度,然后将右div的顶部和底部钉在内容div上。随着左的增长,内容的增长,右与内容相关联,为您提供您想要的效果。然而,这是不对称的——如果你想让任何一个 div 让另一个 div 跟随它,那就是另一个问题了。

CSS:

html, body {
    height: 100%;
}
#pagewrap {
    width: 100%;
    height: 100%;
}
#content {
    position: relative;
}
#header {
    width: 100%;
    height:97px;
}
#left {
    left:0px;
    width:20%;
    background-color:#1C2326;
    color: #fff;
    top: 0;
}
#right {
    position:absolute;
    right:0px;
    width:80%;
    background-color:#2D3538;
    color:#fff;
    bottom: 0;
    top: 0;

}
#footer {
    clear:both;
    height: 80px;
    background-color:#72D27C;
}
于 2013-10-04T18:58:40.793 回答