我想上的元素應用相同高度的DIV中第2分列在我的live blog內。上的元素應用相同高度的第2分列一個div
目前輸出類似下面的東西:
我所要的輸出是類似如下:
我做些什麼來證明這是在加入高度文章CSS,但如果你在PX增加高度這一項纔有效。我試圖找到一個「響應式」的方式來做到這一點。
------ ----編輯
示例代碼:
.izq{
float: left;
\t margin-left: 0px;
border: 1px solid #000;
width: 48%;
clear: both;
\t margin-left: 0;
border: 1px solid;
}
.der{
float: right;
\t margin-right: 2.564102564102564%;
width: 48%;
border: 1px solid;
}
<html>
<head>
</head>
<body>
<div class="cotainer">
<article class="izq">art1</article>
<article class="der">art2<p>contiene 1 parrafo</article>
<article class="izq">art3 mas texto <p> otra parrafo <p> otro parrafo</article>
<article class="der">art4<br> mas texto<br> mas texto</article>
<article class="izq">art5 <p> un par de parrafos </article>
<article class="der">art6 <p> articulo 6 contiene <p> 4 parrafos en total<p> contando este</article>
</div>
</body>
</html>
檢查了這一點http://stackoverflow.com/a/10222806/6003350 –
請你把你的代碼在這裏對您的信息? – Grinex