图片大小自适应垂直居中的方法(移动端)

img{
    position: relative;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
原文地址:https://www.cnblogs.com/John-blogs/p/7026967.html