我有3行圖像。
圖像左側有白色空間。
右側圖像右側有空白區域。使用引導區時左右圖像的左右空格
我該如何解決這個問題,所以我沒有任何左右側的空間?
見下面我的代碼:
背景是橙色的圖像所以最好可見。
HTML:
<div class="container section">
<div class="row">
<div class="col-md-offset-1 col-md-10 featured">
<div class="col-md-4 img-featured-1">
<%= image_tag("featured-1.jpeg", class: "img-responsive") %>
</div>
<div class="col-md-4 img-featured-2">
<%= image_tag("featured-2.jpeg", class: "img-responsive") %>
</div>
<div class="col-md-4 img-featured-3">
<%= image_tag("featured-3.jpeg", class: "img-responsive") %>
</div>
</div>
</div>
</div>
CSS:
.featured {
background-color: orange;
}
.img-featured-1 {
width: 33.33333%;
float: left;
}
.img-featured-2 {
width: 33.33333%;
}
.img-featured-3 {
width: 33.33333%;
float: right;
}
另外,大多數CSS是不neccesary。儘管引導程序類「.col-md-4」已經設置了它,但您將寬度宣佈爲33.3333%。而且浮動也不是必需的,它們應該一個接一個地定位。 – torus
爲什麼你使用'col-md-offset-1 col-md-10'類來'精選'。它也減少了空間。相反嘗試'col-md-12' – DJAy