我想要在一個塊中對齊3個圖像。他們必須留在相同大小的容器中並水平放置。在一個容器中水平對齊圖像
下面的代碼:
<div class="container">
<img src="http://images2.webydo.com/31/313624/3958/21b785db-14ea-42f7-af0d-7e7a8d8019d9.jpg" />
<img src="http://images2.webydo.com/31/313624/3958/9657ddfd-81e8-4154-bc61-bbe30e4a8740.jpg" />
<img src="http://images2.webydo.com/31/313624/3958/909af36d-b941-4a20-9441-20505c035da3.jpg"/>
</div>
.container {
width: 300px;
height: 200px;
position:relative;
float: left;
text-align: center;
}
.container img {
width: 100%;
height: auto;
margin: 5px;
}
是[this](http://jsfiddle.net/Lbmkr/)是什麼意思? –
看起來像每個圖像的寬度爲100% - 這看起來不正確...特別是如果容器只有300px寬...(每個圖像將採取容器的全部寬度) – ochi
問題不明確, @ user3412999 - 請你澄清一下嗎? – Marcello