明确的财产不起作用即7

时间:2010-06-03 11:00:46

标签: html css

我在我的网站上使用了一个div,使用了float:left和float:之后使用clear:两者,它在所有浏览器中工作正常除了ie7我已经尝试了很多东西请告诉我一个解决方案解决这个问题......

的CSS:

.clear
{
    clear : both;
    margin : 0px;

} 

HTML:

<div style="float:left">some text</div>
<div style="float:left">some text</div>
<div class="clear"></div> 
<div style="float:left">some text</div>
<div style="float:left">some text</div>

由于

2 个答案:

答案 0 :(得分:1)

尝试向div添加一些内容:

 <div class="clear">&nbsp;</div> 

更好的方法是clearfix

答案 1 :(得分:0)

在父div中添加一个没有内容的div,并使用style清除它。例如