+ 1
how to set multiple background images...example.please
7 Answers
+ 2
<div class="img1"></div>
<div class="img2"></div>
+ 1
with css3
background-image: url(image.gif), url(image2.gif);
+ 1
div.img1 {
position: relative;
height: 50%;
width: 100%;
border: 1px solid black;
background-image:url("image1.gif");
}
div.img2{
position: relative;
height:50%;
width: 100%;
background-image:url("image2.gif");
background-color: #8bc34a;
border: 1px solid black;
}
0
thanks how about CSS??
0
you should use multiple div sections each one with different background image.
0
anze can u help me create like a prototype webpage
0
background: url("img1.jpg") left top no-repeat, url("img3.jpg") repeat. Reffer to http://www.w3schools.com/css/css3_backgrounds.asp