我想垂直居中放置图像。以下代码在所有接受IE6的浏览器上都可以正常工作,并且我网站的访问者将使用IE6。

我如何在Internet Explorer 6中将此图像垂直居中?

<div id="galleryImage"><div id="imgContainer"> <img src='' alt='' /> </div></div>

#galleryImage{
width:668px;
height:668px;
border:solid 1px #c0c0c0;
overflow:hidden;
float:left;
line-height:668px;
text-align:center;
}
#imgContainer{
    display:inline;
        height:668px;
    line-height:668px;

}

最佳答案

这段代码为ie6帮了我大忙。与其他有相同问题的人分享

http://snipplr.com/view/36863/jquery-plugin-vertical-align/

关于css - 在IE 6中垂直对齐图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4476739/

10-09 19:04