设置背景图片铺满整个屏幕

方案一

bgc {
    background-image: url(../image.ipg);
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
}

方案二

    position absolute
    width 100vw
    height 100vh
    background-repeat no-repeat
    background-size cover
    background-position 50%
    background-image url('/static/img.jpg')
posted @ 2019-02-14 11:50  lijia2019  阅读(1333)  评论(2编辑  收藏  举报