我有這樣的CSS:顯示圖像>李
.clients {
list-style: none;
margin-bottom: 16px;
}
.clients li {
display: block;
padding: 15px 0px;
background: #f4f4f4;
border-bottom: 1px solid #ccc;
margin-bottom: 24px;
min-height:100px;
max-height:100px;
-webkit-transition: all .2s linear;
-moz-transition: all .2s linear;
-o-transition: all .2s linear;
-ms-transition: all .2s linear;
transition: all .2s linear;
}
這個HTML:
<ul class="clients">
<li><img src="" /></li>
<li><img src="" /></li>
<li><img src="" /></li>
</ul>
我想使圖像在clients
或在底部顯示水平居中,因爲圖像可能有不同的尺寸
使用底部:0;用於在底部顯示圖像。水平中心可以用margin 0自動完成;提供的寬度在那裏。 – Tarang
我剛剛嘗試過,並在'.clients img {bottom:0; }'但它顯示與頂部圖像相同的方式 – charlie