0

对我来说,图像不会以垂直对齐为中心,因为它们似乎应该如此。我只在怪癖模式下为 IE7 编码(不幸的是)。我的代码如下。任何人都知道为什么这不会垂直对齐

<html>
<head>
</head>
<body>
<div style="height:500px; width 500px; line-height:500px; background-color:Green; vertical-align:middle;">
   <img src="./images/load.gif" style="vertical-align:middle;"/>
</div>
</body>
</html>
4

2 回答 2

1

如果要在 div 中垂直对齐图像,则应执行以下操作:

div {
    position:relative;
    height:500px;
    width:500px;
}

div img {
    position:absolute;
    top:50%;
    margin-top:-XXXpx; /* where XXX is half the height of the image */
}
于 2012-08-29T20:46:36.000 回答
0

您可以将图像设置为背景图像,然后使用以下内容将背景居中:

<div style="height:500px; width 500px; line-height:500px; background: green url('/images/load.gif') left center no-repeat ; "></div>
于 2012-08-29T21:24:12.827 回答