如何將包含絕對元素的圖像居中?如何將包含絕對元素的圖像居中?
我已經設法定位圖像中的絕對元素,但現在我想將圖像置於紅色容器內部......怎麼樣?
例如:
HTML
<div id="image">
<div id="the-image">
<img src="..." width="..." height="..." alt="">
<a href="..."><img src="" alt=""></a>
</div>
</div>
CSS
#image {background-color: red; float: left; width: 660px;}
#the-image {display: inline-block; position: relative;}
#the-image img {}
#the-image a {position: absolute; bottom: 10px; right: 10px;}
如果我使用你的答案,圖像容器內的絕對元素位於外部,所以它不會工作 – Marco
我做了..並嘗試它,它不工作...圖像容器內的元素是外部,他們需要在裏面,看看我的圖像 – Marco
這裏是(第一次使用jsfiddle)http://jsfiddle.net/uLX8g/2/ – Marco