img垂直居中div - css样式

参考: 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;
        }

猜你喜欢

转载自www.cnblogs.com/007sx/p/11206232.html
今日推荐