在css中設置背景圖片居中顯示的方法:1.創建div標簽;2.設置標簽寬高;使用background屬性設置背景圖片;
在css中設置背景圖片居中顯示的方法
1.首先,在頁面中創建一個div標簽;
<body><div></div>
</body>
2.div標簽創建好后,在css中給div標簽設置寬度和高度;
div {width: 300px;
hright: 400px;
}
3.div標簽設置好后,使用background屬性為div標簽設置背景圖片;
div {width: 300px;
hright: 400px;
background:url(images/11.png) no-repeat;
}
4.最后,背景圖片設置好后,使用background-position屬性即可設置圖片居中顯示;
div {width: 300px;
hright: 400px;
background:url(images/11.png) no-repeat;
background-position: center center;
}