Multiple Backgrounds on Body

前端 未结 2 1288
伪装坚强ぢ
伪装坚强ぢ 2020-12-22 03:19

Not sure if this is possible but can i put one transparent image over the standard background image on the website.

    body {
  font-family: Arial, Helvetic         


        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-22 03:54

    Just add another url after a coma and it should work.

    background: url('/images/body-bg.gif'), url('/images/anotherImage.png');
    background-repeat: repeat-x;
    

    You can find more info here.

    UPDATE

    You can find working example here, on jsfiddle. Sorry for the images, random gif and png from google.

提交回复
热议问题