CSS背景圖怎么填?
在CSS中,可以使用background-image
屬性來填充背景圖,這個屬性接受一個URL值,指向你想要顯示的背景圖像,以下是一個簡單的例子:
body { background-image: url('path/to/your/image.jpg'); }
在這個例子中,body
元素被指定了一個背景圖像,你需要將url('path/to/your/image.jpg')
替換為你想要顯示的背景圖像的URL,這個URL可以是相對路徑,也可以是***路徑。
如果你想要讓背景圖像在頁面中重復(fù)顯示,可以使用repeat
關(guān)鍵字,如果你想要讓背景圖像在水平和垂直方向上重復(fù)顯示,可以這樣做:
body { background-image: url('path/to/your/image.jpg'); background-repeat: repeat; }
如果你想要讓背景圖像只在水平方向上重復(fù)顯示,可以使用repeat-x
關(guān)鍵字;如果你想要讓背景圖像只在垂直方向上重復(fù)顯示,可以使用repeat-y
關(guān)鍵字。
body { background-image: url('path/to/your/image.jpg'); background-repeat: repeat-x; }
或者:
body { background-image: url('path/to/your/image.jpg'); background-repeat: repeat-y; }
如果你想要讓背景圖像不顯示在頁面中,可以使用no-repeat
關(guān)鍵字。
body { background-image: url('path/to/your/image.jpg'); background-repeat: no-repeat; }