2013-04-18 182 views
0

圖像容器我有以下的圖像容器:固定大小

<div class="images"> 
    <img src="<%=imageURL %>" /> 
</div> 

而對於.images的CSS是:

.images{ 
display:inline-block; 
width:100px; 
height:133px; 
overflow:hidden; 
} 

我的圖片具有不同的尺寸這就是爲什麼我使用上述DIV膠囊,使他們相同的大小。但在頁,我的圖片來是這樣的:

enter image description here

其頂部不對齊。我該如何糾正?

回答

2

添加vertical-align:top

.images{ 
    display:inline-block; 
    width:100px; 
    height:133px; 
    overflow:hidden; 
    vertical-align:top 
} 
+0

感謝。這工作。 – soundswaste

0

使用浮動

.images{ 
     float:left; 
     width:100px; 
     height:133px; 
     overflow:hidden; 
     }