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;
}
相關文章
相關標籤/搜索