0
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<article id="1">
<div class="article-header">
<h2>This is a Header!</h2>
</div>
<div class="article-text">
<p>This is a Text!</p>
</div>
</article>
</div>
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">
<article id="2">
<div class="article-header">
<h2>This is a much longer Header which will wrap over two lines!</h2>
</div>
<div class="article-text">
<p>This is a much longer Text which will wrap over also two lines!</p>
</div>
</article>
</div>
</div>
CSS
.article-header,
.article-text{
width: 100%;
}
對於這個例子中我填充內容,但實際上在PHP生成內容的緣故,意味着它們被創建與內部COLS許多行。
我現在的問題是,我想讓行內的所有容器都適合彼此的身高。這裏是我的意思的exampleimage:
你確定你的HTML輸出相匹配? –
你能聲明最小高度嗎? –
您可以強制'article'元素中的'articel-header'使用'inline-block'具有相同的高度,但在不同的父母中具有相同的高度,並且具有動態內容,這隻會對CSS無效。幸運的是你添加了'javascript'標籤。 –