我使用引導程序,我想創建2個div。爲2格設置相等的高度
1 - 含量的div(信息截面) 2 - 分度backgroung圖像(封面塊)
但是我有問題。我不能設置height1 = height2。我的代碼:
<div class="cover-section">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 info-section">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="col-md-6 cover-block"></div>
</div>
</div>
</div>
的CSS:
.info-section {
background-color: red;
padding: 100px 40px;
border: none;
}
.cover-block {
background: url(../images/2.jpg) center no-repeat;
background-size: cover;
height: 500px;
}
我嘗試使用
.cover-block{
height:100%;
}
,但它不工作
Twitter的引導沒有提供所要求的行爲。但可以通過JavaScript/jQuery或[flex-box](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)(我的偏好)來實現 - 或者如果你需要使用'display:table;'支持更低的IE版本,這當然不是一個很好的解決方案。 ** PS:**'身高:100%;'只適用於父母有設定身高的情況。 – AlexG