美文网首页
css 背景图片适配

css 背景图片适配

作者: 拓跋123 | 来源:发表于2018-12-11 20:06 被阅读11次

    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;
        }
    }
    

    相关文章

      网友评论

          本文标题:css 背景图片适配

          本文链接:https://www.haomeiwen.com/subject/egaehqtx.html