我正在尝试使用 CSS 显示表格单元将图像垂直居中。为什么我的代码不起作用?看起来应该根据 css-tricks.css
http://css-tricks.com/centering-in-the-unknown/
.cont {
background-color: grey;
position: fixed;
height: 100%;
width: 100%;
display: table;
}
img {
display: table-cell;
vertical-align: middle;
}
<div class="cont">
<img src="http://www.quarktet.com/Icon-small.jpg" />
</div>