在项目中遇到网页全屏背景的问题?
我是这样解决的,不知有什么更好的方法?
<body>
<header></header>
<main></main>
<footer></footer>
<div class="body_bg">
<img src="bg1.png" width="100%" height:"100%"></img>
</div>
<body>
.body_bg{
position:absolute;
left:0;
right:0;
bottom:0;
top:0;
z-index:-1
}
背景图足够大即可~