中心放置的圖像中有150x130標籤:在<a>標籤
.listings ul li a.thumb{
float:left;
width:150px;
height:130px;
border:#ededed 3px solid;
}
當我保存圖像我查看圖像的寬度和高度。與== 150或高度== 130。並鑑於:
<a href="#" class="thumb">
if (checking with is full)
{
<img src="@Url.Content(Path.Combine("~/Uploads/Products/", @item.ImagePath))" style = "width: 150px;" alt="" />
}
if (checking height is full)
{
<img src="@Url.Content(Path.Combine("~/Uploads/Products/", @item.ImagePath))" style = "height: 130px;" alt="" />
}
</a>
有在不同尺寸此<a>
標籤圖像。例如,100x130,70x130,150x140,150x80等。但其中一種尺寸的圖像等於標籤尺寸之一。 (150或130)。方形圖像不是問題,但不同大小的圖像似乎在<a>
標籤的底部或頂部,右側或左側。
如何才能放置所有尺寸圖片中心的標籤?
可能的複製http://stackoverflow.com/questions/720495/vertical-align-block-level -lele-block-level-element –