我正在尝试创造一些东西
<div class="model-info">
<div class="mainholder">
<div class="divImage centeredImageContainer" align="center">
<a href="talent_view.aspx?uid=e7385d69-8659-4ab4-a55d-d693ca9ba816">
<img class='centeredImage' style='width:80px;' src="http://t0.gstatic.com/images? q=tbn:ANd9GcRX9N8qSDD4OhL9XH0N8RTbf3bObBR5TrqKeyUFxi-ZpAKQxyVsrw" alt="Anne" title="Anne">
</a>
</div>
CSS如下:
.centeredImageContainer
{
position:relative;
}
.centeredImage
{position: absolute;
top: 0;
bottom: 0;
margin: auto;
left: 0;
right: 0;}
但是当我尝试以绝对位置垂直居中图像时,它会扰乱所有设计,
图像是动态的,没有固定大小。
此外,当我更改 px 中的 .divimage 高度时,它接受但在 % 中时,它适用于 0px 高度。
如何将此图像设置为垂直居中。还是我错过了什么?
谢谢你