4

我有一个文章标签,在从 wordpress 生成文章的 php 代码中。它们的高度并不相同,这取决于内容。它们按浮动组织成两列。

如果第一行中的一篇文章与同一行中的另一篇文章高度不同,则第二行对齐到较大 div 的底部。现在我想在没有任何间距的情况下对齐它们。

这是一些CSS:

#container {
width: 1000px;
margin: 0px auto;
}

article {
position: relative;
width: 435px;
margin: 10px 10px;
background-color: rgba(0, 0, 0, 0.5);
padding: 20px;
float: left;
}

编辑 jsFiddle(现在有内容来演示问题):http: //jsfiddle.net/4PMj5/6/

4

1 回答 1

1

你可以在你的 CSS 中使用even和使用odd伪选择。

article:nth-child(even) {
    position: relative;
    width: 435px;
    margin: 10px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    float: right;
}
article:nth-child(odd) {
    position: relative;
    width: 435px;
    margin: 10px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    float: left;
}

结果将是:这个更新的 fiddle

于 2013-03-11T11:45:28.700 回答