1
我有一個圖片網格,由一大堆div組成,每個div內有一個標題,一個小圖片和一個描述。當網格處於最大寬度時,所有內容都以它爲中心。當寬度開始更改時,會根據需要刪除適合父div的列的數量,但我無法確定如何將所有內容都保持居中(或者如果可能)。使圖片網格中心響應
在這裏,我使用的代碼的基礎:
HTML
<div id="Parent Div">
<Div class="gallery">
<h6 align="center">Title</h6>
<img class="gallery-picture" src="#">
<p>Description</p>
</Div>
<Div class="gallery">
<h6 align="center">Title</h6>
<img class="gallery-picture" src="#">
<p>Description</p>
</Div>
<Div class="gallery">
<h6 align="center">Title</h6>
<img class="gallery-picture" src="#">
<p>Description</p>
</Div>
<Div class="gallery">
<h6 align="center">Title</h6>
<img class="gallery-picture" src="#">
<p>Description</p>
</Div>
</div>
這裏是CSS:
#Parent Div{
margin-left:auto;
}
.gallery{
margin-top:40px auto;
padding-bottom:20px;
width:235px;
float:left;
height:350px;
}
.galley-picture{
display:block;
text-align:center;
margin:10px auto 0;
width:200px;
}
.gallery p{
text-align:center;
margin:10px auto 10px;
padding: 0 21px 0 21px;
}
請創建的jsfiddle你的代碼演示 – davidcondrey