0
我需要2個背景圖像在身體,1高度從500px從500px到自動dsecond;CSS 2背景圖像1完成後2開始
body{
background: url("../img/bg.png")repeat-x left top;
background: url("../img/bg-color.png") repeat left top;}
我的代碼只顯示第二張圖片,如何修復將顯示的圖片2張圖片?
我需要2個背景圖像在身體,1高度從500px從500px到自動dsecond;CSS 2背景圖像1完成後2開始
body{
background: url("../img/bg.png")repeat-x left top;
background: url("../img/bg-color.png") repeat left top;}
我的代碼只顯示第二張圖片,如何修復將顯示的圖片2張圖片?
你不能有多個圖像作爲背景,除非你使用CSS3。如果這是你要的東西,這多個圖像應被宣佈爲同樣喜歡,像這樣:
background-image: url("file1.jpg"), url("file2.jpg");
如果你不想使用CSS3,你將需要使用不同的DOM元素,每一個圖片。