+ 1
Can we use multiple images as background?
if can then tell
2 odpowiedzi
+ 1
Yes you can like this
#example1 {
background-image: url(img_flwr.gif), url(paper.gif);
background-position: right bottom, left top;
background-repeat: no-repeat, repeat;
}
Please note
url(image), (note comma) url(next_image);
Hope it helps
PS: It was introduced in CSS 3 ;)
+ 1
@ Simen Daehlin, working well! ;)