1
我正在使用帶全角的引導網格系統,我想要一個部分,其中有四個img-elements具有相同的邊距,邊距應該是響應的。該部分位於頁面的中心。內聯元素之間的相等邊距
我可以說每個img元素的margin-right:20px或類似的東西,但我可以得到這也響應?
<div class="row" id="content_services">
<div class="col-md-offset-2 col-md-8">
<section id="services_section">
<img src="pictures/test.jpg" alt="Test" class="img-responsive">
<img src="pictures/test.jpg" alt="Test" class="img-responsive">
<img src="pictures/test.jpg" alt="Test" class="img-responsive">
<img src="pictures/test.jpg" alt="Test" class="img-responsive">
</section>
</div>
</div><!-- END ROW CONTENT_SERVICES -->
樣式表:
#services_section{
}
#services_section img{
height: 275px;
width: 275px;
display: inline;
}