浮动的奇怪空隙

时间:2013-08-25 15:18:02

标签: php html css css-float

我完全被阻止了这个问题,我正在使用CMS,我正在生成文章,我希望它们有两个列,所以

这里是html代码(我删除了一些php部分,不要混淆你):

  <div id="contenu_col">


    <?php   

            echo '<div class="col1">
<a href="exhibition.php?ID='.$ID.'"><img src="square/'.$IMGACSQ.'" ></a><br/>
            <p><a href="exhibition.php?ID='.$ID.'">'.aff($DATE).'<br/>'.aff($nom_projet).' - '.aff($ARTISTE).'</p></a></div>'; 

</div>

生成一个看起来像这样的HTML代码:

    <div class="col1">
<a href="exhibition.php?ID=109">
<img src="square/E_3094_x.jpg" >
</a><br/>

<p><a href="exhibition.php?ID=109">11.12. - 29.01.11.<br/>New impressions - New works -  new artists - new space 5 and a happy new year)</p></a>

</div>

<div class="col1">
<a href="exhibition.php?ID=108">
<img src="square/BG_IoanGrosu06_x.jpg" >
</a><br/>
<p><a href="exhibition.php?ID=108">30.10. - 04.12.10.<br/>Come here tomorrow - Ioan Grosu</p></a></div>

和css:

    .col1{
width:300px;
float:left; 
padding: 3%;
display: block;

}


.col1 img{
width:100%;

}

.col1:after{
clear: both;
}

#contenu_col {
width:850px;
top:150px;
z-index:50;
left:460px; 
position:absolute;  
padding-bottom: 20px;   
}

#contenu_col img{
width:100%;

}

(因为我无法发布图片......)

它占网站的70%;然后有时出现一些奇怪的差距...... 我不明白我做错了什么:(

已决定。感谢你!

2 个答案:

答案 0 :(得分:1)

编辑col1类并添加高度,例如height:300px;

    .col1 {
    width: 300px;
    float: left;
    padding: 3%;
    display: block;
    height: 300px;
}

DIV#encar的样式也不合适。

答案 1 :(得分:0)

出现因为.col1高度不统一,请尝试将此添加到您的css

.col1{
  height: some value
}