我在自舉4中構建了我的網站的前端。我想將我的一個頁面拆分爲四個背景圖像,每個背景圖像填充一列以便列堆棧響應移動。到目前爲止,我在下面的設計中使用了background-image屬性來填充每一列。儘管如此,圖像並沒有填滿整個專欄。Boostrap響應式設計網格問題
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<div class="img img-profile-1">
</div>
</div>
<div class="col-md-3">
<div class="img img-profile-2" >
</div>
</div>
<div class="col-md-3">
<div class="img img-profile-3" >
</div>
</div>
<div class="col-md-3 text-center">
<div class="img img-profile-4">
</div>
</div>
</div>
</div>
我加入的CSS下面每一列中的股利,並獲得完整的圖像顯示,但有一個奇怪的滾動發行和白色空間時,我讓視較小。
.img-profile-1 {
background-image: url('../img/image.jpg') !important;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
width: 100%;
height: 100%;
margin-left: -15px;
margin-right: -15px;
}
任何想法如何處理這種響應與背景圖像的困境? 謝謝!
你能提供一個工作的jsfiddle給定?向我們展示你卡住的地方〜謝謝 –