html容器中图片水平居中

容器 css:

.v_photo_box {

    width: 390px;

    position: relative;

}

图片 css:

.v_photo_box img {

    max-width: 380px;

    max-height: 700px;

    display: block;

    padding: 5px;

    border: none;

    margin: 0 auto;

    overflow: hidden;

}

主要就是:margn:0 auto;

你可能感兴趣的:(html)