html背景图片怎么全屏
1、首先设置html和body的高度为100%
推荐学习:html教程
1 2 3 4 |
html,body{ width:100%; height:100% } |
2、然后给body添加背景图片,并设置background-size为100%即可。
1 2 3 4 5 |
body{ font-family: "华文细黑"; background:url("../img/Flyer-bg.png") no-repeat; background-size: 100%; } |
如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html5/h57400.shtml