我不知道为什么会这样。我能解决这个问题的唯一方法就是在文本之后添加一些断点,但显然这不是一个可接受的解决方案。
隔离的CSS:
.center_column {
max-width: 892px;
float: left;
}
.content {
width: 892px;
background-color: #FFF;
background-image: url("style/contentpost.png");
background-repeat: no-repeat;
border-style: solid;
border-width: 2px;
border-color: #7699bb;
border-radius: 10px;
}
.content_wrap {
margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
margin-bottom: 20px;
text-align: left;
}
.text {
width: 100%;
margin-top: 20px;
text-align: justify;
text-justify: distribute;
font-weight: normal;
font-size: 16px;
}
隔离的HTML:
<div class="center_column">
<div class="content">
<div class="content_wrap">
<div class="text">
<img src="image">Text
</div>
</div>
</div>
</div>
为什么会这样?谁能告诉我如何解决这个问题? 提前谢谢你:)
答案 0 :(得分:7)
这会强制浏览器计算包含float的div的高度:
.text{
overflow: hidden;
}
另外,如果您出于某种原因不想overflow:hidden
,请使用google for clearfix。
答案 1 :(得分:1)
这是因为你的
float : left;
您需要添加此
<div class="clear"></div>
在您的图片下方。
并将其添加到您的css文件
.clear { clear : both; }
答案 2 :(得分:1)
您可以在CSS中使用固定的图像宽度和高度,或在CSS中使用背景位置和大小属性。
答案 3 :(得分:1)
添加一个清除浮动的<div>
:
<div class="center_column">
<div class="content">
<div class="content_wrap">
<div class="text">
<img src="image">Text
<div style="clear: both;"></div>
</div>
</div>
</div>
</div>
答案 4 :(得分:1)
float:left;是你的问题,
添加:
<div class="clear"></div>
的CSS:
.clear {
clear: both;
}
答案 5 :(得分:1)
看到你还没有完成整个布局。尝试这种布局和风格..
<div class="center_column">
<div class="content">
<div class="content_wrap">
<img class="pic" />
<div class="text">TEXT</div>
</div >
</div>
<div class="footer" >FOOTER</div>
</div>
将此添加到现有样式
.pic {
float:left;
}
.footer {
clear: both;
}
FLOAT实际上将浮动所有内容,向左或向右添加CLEAR将清除浮动问题。换句话说,结束浮动效应。