html5怎样设置整页背景图片?

2025-02-24 16:13:23
推荐回答(1个)
回答1:

body{      font-family: "微软雅黑";  

width: 100%;  

height:auto;  

background:url("../img/....png") no-repeat;  

background-size: 100%;   }

在插入背景图片的容器里设置background-size: 100%,这样图片就会覆盖整页。