使用css让body的背景图片铺满整个屏幕

话不多说直接上代码

  body {
     
        background:url("http://pic.netbian.com/uploads/allimg/200515/234718-15895576386a47.jpg") no-repeat center center;
		background-size:cover;
        background-attachment:fixed;
        /* 设置背景颜色,背景图加载过程中会显示背景色 我试了下可加可不加 */
        background-color: #CCCCCC;
	}

你可能感兴趣的:(css)