css设置背景图片居中;css背景图片自动居中
1、打开前端开发工具,新建一个html代码页面

3、设置背景图片。创建style标签,然后在标签里面对类为bg-img设置背景图片、图片不重复、宽、高的样式。样式代码:.bg-img{ height: 100vh; width: 100%; background-image: url(img/car.jpg); background-repeat: no-repeat; }

5、回到html代码页面,在bg-img类里添加background-position: center的属性。
