IMG Center-居中如何破!

方法1、自动适应居中
img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

方法2、垂直居中
img {
    position: absolute;
    top: 0; bottom:0; left: 0; right:0;
    margin: auto;
}
相关文章
相关标签/搜索