背景图片根据分辨率大小始终铺满居中不变形

分三层,第一层relative,第二层absolute,第三层fixed
扩充父元素的宽高

  • html
  • css
.page-container{
    position: relative;
}
.front-container{
    min-height: 690px;         
    max-height: 750px;         
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;          
    left: 0;
}
.front-bg {
    position: fixed;
    width: 200%;
    height: 200%;
    left: -50%;
    background: #fff;
}
.front-bg img {
    display: block;
    margin: auto;
    min-width: 50%;
    min-height: 50%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

你可能感兴趣的:(背景图片根据分辨率大小始终铺满居中不变形)