我有以下HTML代码:
<div style="border: 3px coral solid;width:400px;height:400px;background:#D4D0C8;">
<img style="max-width:400px;max-height:400px;" src="myImage.jpg">
</div>
使用宽度为&gt;的这些样式图像400像素的大小调整,但仍保留在div的顶部。有没有办法垂直居中?
答案 0 :(得分:9)
CSS:
div {
border: 3px solid coral;
width: 400px;
height: 400px;
background: #d4d0c8;
line-height: 400px;
text-align: center;
}
img {
max-width:400px;
max-height:400px;
vertical-align: middle;
}
请参阅demo fiddle。
答案 1 :(得分:0)
好吧,我似乎找到了问题所在。图像在提供的链接上正确居中,因为它位于iframe内部。在正常页面流中,图像将显示在其封闭容器的顶部。
如表格所示:表格单元格在IE中被破坏,修复需要一个最小的封闭表:
<html>
<head>
<style type="text/css">
#content { border:solid 1px;}
img{ max-width:400px;max-height:400px;margin:auto;}
#page-table {
height: 400px;
width: 400px;
border-collapse: collapse;
text-align: center;
border:solid 1px;
}
#page-td {
height: 100%;
padding: 0;
vertical-align: middle;
}
div#content2{
border:solid 1px;
width: 400px;
height: 400px;
/*line-height: 400px;*/
text-align: center;
display: table-cell;
vertical-align: middle;
}
img#image2 {
max-width:400px;
max-height:400px;
vertical-align: middle;
}
div#enclosingdiv2 {
border:solid 1px;
}
</style>
</head>
<body>
With table:
<table id="page-table"><tr><td id="page-td">
<div id="content">
<img src="http://lorempixum.com/250/250/abstract">
</div>
</td></tr></table>
Without:
<div id="content2">
<div id="enclosingdiv2">
<img id="image2" src="http://lorempixum.com/250/250/abstract">
<div>
</div>
</body>
</html>