如何让背景图片平铺整个页面;在高度不确定的情况下;屏幕的大小不确定
1 回答

临摹微笑
TA贡献1982条经验 获得超2个赞
body,html{
width: 100%;
height: 100%;
margin: 0 ;
padding: 0;
}
body{
background: url("投票-web.png");
background-size: 100% 100%;
background-repeat: no-repeat;
}
添加回答
举报
0/150
提交
取消