我在包装器中有3个div:
<div id="wrapper">
<div id="leftbar">
Lorem ipsum dolar sit amet
</div><!--LEFTBAR-->
<div id="middle">
Lorem ipsum dolar sit amet
</div><!--middle-->
<div id="rightbar">
Lorem ipsum dolar sit amet
</div><!--RIGHTBAR-->
</div><!--wrapper-->
'leftbar'和'middle'都向左浮动,而'rightbar'向右浮动。 'wrapper'设置了height:100%; clear:both;
。
但是,如果'middle'中有大量文本或内容,则会溢出'wrapper'div。我正在努力弄清楚为什么会这样。
我的CSS是:
#wrapper {
width: 1000px;
height: 100%;
margin:auto;
padding: 30px;
margin-top: 40px;
background-color:#FFF;
color:#000;
border: 2px solid #828fc4;
clear:both;
}
#leftbar {
float:left;
width: 150px;
min-height: 450px;
padding: 5px;
}
#middle {
float:left;
height: 100%;
width: 580px;
padding-left: 20px;
padding-right: 20px;
border-right: 1px dotted #2B308C;
border-left: 1px dotted #2B308C;
}
#rightbar {
float:right;
width: 200px;
min-height: 450px;
padding: 5px;
}
感谢任何建议!
答案 0 :(得分:2)
将overflow:auto
添加到#textcontent
并移除height:100%
表单#textcontent
和#maincontent
答案 1 :(得分:1)
在您编辑问题时,我刚刚知道它是如何溢出的,这是因为您使用height: 100%;
,因此您的div不会超过视口,因此请使用height: auto;
代替使用overflow: auto;
为#textcontent
代替clear: both;
,而穆萨告诉你这样做..(用萤火虫检查)
答案 2 :(得分:1)
这是带有一些小添加的css文件:
#wrapper { width: 1000px; height: auto; margin:auto; padding: 30px; margin-top: 40px; background-color:#FFF; color:#000; border: 2px solid #828fc4; clear:both; overflow:auto; }
#leftbar {
float:left;
width: 250px;
padding: 5px;
text-align:center;
}
#middle {
float:left;
width: 400px;
padding-left: 20px;
padding-right: 20px;
border-right: 1px dotted #2B308C;
border-left: 1px dotted #2B308C;
text-align: center;
}
#rightbar {
float:right;
width: 250px;
padding: 5px;
text-align:center;
}
只是我的两分钱
答案 3 :(得分:0)
如果您只需要文本,请尝试使用CSS3列。
答案 4 :(得分:0)
添加溢出属性并将高度更改为自动。
#wrapper {
width: 1000px;
height: auto;
margin:auto;
padding: 30px;
margin-top: 40px;
background-color:#FFF;
color:#000;
border: 2px solid #828fc4;
clear:both;
overflow:hidden;
}
#middle {
float:left;
width: 580px;
padding-left: 20px;
padding-right: 20px;
border-right: 1px dotted #2B308C;
border-left: 1px dotted #2B308C;
}