怎么让背景图片铺满整个页面

方法一、background背景图片设置

html,
body {
	width: 100%;
	height: 100%;
	background: url(../images/bg.png) no-repeat;
	background-size: 100% 100%;
	background-attachment: fixed;/* 不设置的话页面滑动时,背景会不铺满*/
}

方法二、图片绝对定位实现

<body>
    <div id="Layer1" style="position:absolute; width:100%; height:100%; z-index:-1">
        <img src="images/bg.png" height="100%" width="100%" />
    div>
body>

注意:body的background属性去掉,要不然会被遮住

你可能感兴趣的:(CSS)