CSS vertical-align:中间不在IE7中工作

时间:2012-05-07 15:40:55

标签: css internet-explorer-7 vertical-alignment

我在这里有这段代码......

 <div class="pics2">

<div style="position: absolute; top: 0px; left: 0px; display: block; z-index: 4; opacity: 1; width: 225px; height: 200px;"> // this div is generated via jQuery Plugin
<div style="display:table-cell; vertical-align:middle; height:200px;">
<img src="upload/<?php echo $array['image5'] ?>" width="225" />
</div>
</div>
</div>

这是CSS

.pics2 {  
    padding: 0;  
    margin-left:20px auto;
    margin-right:20px auto;
    width:225px;
    height:200px;
    overflow:hidden;
        float:left;
}

.pics2 div{
    width:225px;
    height:200px;
}

.pics2 img {    
        background-color: #eee;
    margin: auto;
    display:block;
    vertical-align:middle;
}

我要做的是将图像垂直对齐在三个div内,上面的代码适用于除IE7之外的每个浏览器......任何人都有任何想法如何修复它?

2 个答案:

答案 0 :(得分:10)

我希望它有助于解决您的问题(文章底部的IE 7的一些秘籍)

Vertically Center Multi-Lined Text

对于像这样的示例代码

margin-top: expression((parentNode.offsetHeight.offsetHeight/2)-(parseInt(this.offsetHeight)/2) <0 ? "0" :(parentNode.offsetHeight/2)-(parseInt(this.offsetHeight)/2) +'px');

而不是

 vertical-align:middle;
  1. parentNode.offsetHeight/2 - 确定容器的高度并将其除以2.这样我们的边距恰好是屏幕高度的一半
  2. -(parseInt(offsetHeight)/2)) - 确定居中区块的高度。

答案 1 :(得分:3)

由于您知道div的高度(您将其指定为200px),因此您可以像这样修复它:

.container{
    position:relative;
}
.v-middle{
    position:absolute;
    top:50%;
    margin-top:-100px;
}

HTML:

<div class="pics2">

<div class="container" style="position: absolute; top: 0px; left: 0px; display: block; z-index: 4; opacity: 1; width: 225px; height: 200px;"> // this div is generated via jQuery Plugin
<div class="v-middle" style="display:table-cell; vertical-align:middle; height:200px;">
<img src="upload/<?php echo $array['image5'] ?>" width="225" />
</div>
</div>

编辑:这是一个有效的例子: http://jsfiddle.net/MUrbL/