css 背景图片适配

2018-12-11  本文已影响11人  拓跋123

MDN详细的解释点这里

#all{
    background: url(img/boardBg.png);
    position: absolute;
    width:100%;
    min-height:auto;
}
@media screen and (max-height: 750px) {
    #all {
        min-height: 750px;
    }
}
@media screen and (min-height: 750px) {
    #all {
        min-height: 100vh;
    }
}
上一篇下一篇

猜你喜欢

热点阅读