img垂直居中div

参考: https://www.jianshu.com/p/f1b570eabe33

html:

<div class="showImg" style="text-align:center"><img src="xxx" /></div>

css:

        .showImg img {
            max-width:100%;
            overflow:auto;
            margin:auto;
            position:absolute;
            top:0;
            left:0;
            bottom:0;
            right:0;
        }
原文地址:https://www.cnblogs.com/007sx/p/11206232.html