我正在尝试找到一种解决方案,如何在具有 100% 高度的 div 中垂直对齐图像(我不知道它的高度)。
我有这个 HTML。除了添加更多包装器之外,我对 HTML 无能为力:
<div id="wrapper">
<img src="http://www.lovecpokladu.cz/nalezy/9687/5.jpg" alt="" />
</div>
而这个相当固定的 CSS - 主要我需要完成图像不会在所有浏览器中溢出浏览器窗口:
#wrapper {
position: absolute;
width: 100%;
height: 100%;
background: #ddd;
}
img {
max-width: 100%;
max-height: 100%;
}
非常感谢!