CSS中可以使用background-image屬性將圖片設(shè)置為背景,實(shí)現(xiàn)網(wǎng)頁的美化效果。
background-image:url(圖片地址);
其中,url()中填寫圖片的地址,可以使用相對(duì)路徑或絕對(duì)路徑。
可以將background-image屬性與其他屬性結(jié)合使用,例如background-repeat、background-position等,來實(shí)現(xiàn)不同的背景效果。
background-repeat:no-repeat; background-position:center;
上述代碼表示背景不重復(fù),且圖片居中顯示。
需要注意的是,在設(shè)置background-image屬性時(shí),需要考慮圖片的大小,以免出現(xiàn)圖片拉伸變形的情況。