图片垂直居中代码

.img-outer {
    display: table;
    width: 100%;
    height: 100%;
    text-align: center;
    .img-inner {
        display: table-cell;
        vertical-align: middle;
        img {
            max-width: 100%;
            max-height: 100%;
            vertical-align: middle;
        }
    }
}

.img-inner 要有固定高度,不能是百分比

posted @ 2015-01-06 16:30  安雅然  阅读(204)  评论(0编辑  收藏  举报