我遇到了以下技术,可以在 DIV 元素内垂直居中图像。
<div>
<img src="someimage.png" />
</div>
div {
position:relative;
width:400px;
height:300px;
border: solid 1px #cccccc;
}
img {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
在这里为它创建了一个小提琴:http: //jsfiddle.net/MryZv/1/
我没有在网上找到任何针对这种技术的提示。
有没有我遗漏的警告?使用起来“安全”吗?