0

我有以下图像容器:

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

而css.images是:

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

我的图像尺寸不同,这就是为什么我使用上面的 div 胶囊使它们大小相同。但是在页面中,我的图像是这样的:

在此处输入图像描述

它们的顶部没有对齐。我该如何纠正?

4

2 回答 2

2

添加vertical-align:top

.images{
    display:inline-block;
    width:100px;
    height:133px;
    overflow:hidden;
    vertical-align:top
}
于 2013-04-18T10:42:09.697 回答
0

使用浮动

.images{
       float:left;
       width:100px;
       height:133px;
       overflow:hidden;
      }
于 2013-04-18T10:44:03.037 回答