我想创建一个简单的缩略图网格来显示来自Europeana API的图像。然而,对于一些奇怪的,可能非常明显的原因,我在这个网格中得到随机行,空间很大,好像浮动不起作用。然而,具有随机图像的相同布局(http://placehold.it/250x350)似乎没有这个问题。在此处查看 html 和 css 的结果:http: //jsfiddle.net/VqJzK/1/。
网格的 CSS
.thumb {
width: 200px;
background-color: #F5F5F5;
border-radius: 5px;
margin-bottom: 0.5em;
margin-top: 0.5em;
text-align: left;
position: relative;
display: inline-block;
float: left;
}
.thumb img {
width: 150px;
vertical-align: middle;
}
和html:
<div class="thumb">
<img alt="test" src="http://europeanastatic.eu/api/image?uri=http%3A%2F%2Fhdl.handle.net%2F10796%2FKOEKOEK_JG1_26_19311105%3Flocatt%3Dview%3Aderivative2&size=LARGE&type=TEXT"/>
</div>
<div class="thumb">
<img alt="test" src="http://europeanastatic.eu/api/image?uri=http%3A%2F%2Fhdl.handle.net%2F10796%2FKOEKOEK_JG1_02_19310521%3Flocatt%3Dview%3Aderivative2&size=LARGE&type=TEXT"/>
</div>
....