这是我的示例输出:
这是我的html
代码:
<div class="products">
<ul class="thumbnails">'
<li>
<div>'.$item->ASIN.'</div>
<div><img src="'.$item->SmallImage->URL.'" alt=""></div>
<div>'.$item->ItemAttributes->Title.'</div>
<div>'.$item->ItemAttributes->ProductGroup.'</div>
</li>
</ul>
这是我的css
代码:
.thumbnails {
text-align: center;
}
.thumbnails li {
width: 150px;
height: 250px;
background: red;
float: none !important; /* to overwrite the default property on the bootstrap stylesheet */
display: inline-block;
*display: inline; /* ie7 support */
zoom: 1;
}
我注意到它已经水平对齐,我的问题是垂直对齐。我应该怎么办?请帮忙谢谢!