CSS背景图无法铺满的问题

html和body设置为100%,当body中的内容超出后,设置的背景图片无法铺满整个屏幕。

点击查看代码
html,body{
    width:100%;
    height:100%;
}
.home{
     width:100%;
    height:100%;
    background: url("../assets/xiazai.jpg") no-repeat;
    background-size: 100% 100%;
}

解决:把背景图设置到body上就行了。

posted @ 2022-10-19 19:02  yunChuans  阅读(1032)  评论(0编辑  收藏  举报