我有一个文章标签,在php代码中生成来自wordpress的文章。它们的高度并不完全相同,这取决于内容。它们由浮动组成两列。
如果第一行中的文章与同一行中的另一篇文章的高度不同,则第二行与biger 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/
答案 0 :(得分:1)
您可以在CSS中使用even
和odd
chilren伪选择。
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;
}
结果如下:this updated fiddle。