如何將圖像水平居中並同時對齊容器的底部?如何水平放置圖像並將其與容器底部對齊?
我已經能夠通過其自身水平居中圖像。我也能夠通過自己對準容器的底部。但我無法同時做到這一點。
以下是我有:
.image_block {
width: 175px;
height: 175px;
position: relative;
margin: 0 auto;
}
.image_block a img {
position: absolute;
bottom: 0;
}
<div class="image_block">
<a href="..."><img src="..." border="0"></a>
</div>
該代碼對齊圖像到div的底部。我需要添加/更改哪些內容才能使圖像在div內水平居中?圖像大小在手之前是未知的,但是它將會是175x175或更少。
非常感謝。這在FF,IE6,IE7和Chrome中非常完美。 – Echo 2008-11-18 20:03:57
簡單而有效的 – 321zeno 2013-04-24 13:52:48