zl程序教程

您现在的位置是:首页 >  前端

当前栏目

img垂直居中div - css样式

CSS 样式 div 居中 垂直 img
2023-09-14 08:56:58 时间

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