css设置背景图自适应高度

方式一:

  	body {
	  	width: 100%;
	    height: 100%;
	    position: fixed;
	    z-index: -1;
	    background-repeat: no-repeat;
	    background-position: 0px 0px;
	    background-size: 100% 100%;
    }

方式二:使用img标签

img {
	position: fixed;
	width: 100%;
	height: 100%;
	display: block;
	z-index: -100;	
}

你可能感兴趣的:(css)