Multiple Background
Posted: 01 December 2009 08:00 AM   [ Ignore ]
Newbie
Rank
Total Posts:  6
Joined  2009-12-01

Hi,

I saw in some website that we can do multiple background images. I tried it in the CSS but am unable to get that. Could u please helpme…

Code is below:

.check{
background-image:url(topimg2.jpg), url(topimg1.jpg);
background-position: center center, 20% 80%, top left;
background-origin: border-box, content-box, border-box;
background-repeat: no-repeat, no-repeat, no-repeat;
width:996px;
height:400px;
}

Profile
 
 
Posted: 01 December 2009 08:41 AM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  9
Joined  2009-04-09

Hi,
It is a CSS3 module that is not supported by all browsers yet.
The only browser projects having this feature implemented so far are WebKit (Safari & Chrome) and KHTML (Konqueror)

Learn more about it here
http://www.css3.info/preview/multiple-backgrounds/

Profile
 
 
Posted: 01 December 2009 09:04 AM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  6
Joined  2009-12-01

Hi Rayzur,

Thank u so much for the information.

Profile