<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: CSS3 Multiple background images</title>
	<atom:link href="http://helephant.com/2009/11/css3-multiple-background-images/feed/" rel="self" type="application/rss+xml" />
	<link>http://helephant.com/2009/11/css3-multiple-background-images/</link>
	<description></description>
	<lastBuildDate>Mon, 01 Feb 2010 01:30:39 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alex G</title>
		<link>http://helephant.com/2009/11/css3-multiple-background-images/#comment-4598</link>
		<dc:creator>Alex G</dc:creator>
		<pubDate>Sun, 31 Jan 2010 11:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://helephant.com/?p=1694#comment-4598</guid>
		<description>Great post! I&#039;ve longed for wider support for multiple background images since WebKit first began supporting them a while back. The best bit is that the newly introduced CSS gradients also follow this rule when used with the background-image property. So we get multiple gradients as a bonus!</description>
		<content:encoded><![CDATA[<p>Great post! I&#8217;ve longed for wider support for multiple background images since WebKit first began supporting them a while back. The best bit is that the newly introduced CSS gradients also follow this rule when used with the background-image property. So we get multiple gradients as a bonus!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wil</title>
		<link>http://helephant.com/2009/11/css3-multiple-background-images/#comment-3230</link>
		<dc:creator>Wil</dc:creator>
		<pubDate>Sat, 05 Dec 2009 20:04:11 +0000</pubDate>
		<guid isPermaLink="false">http://helephant.com/?p=1694#comment-3230</guid>
		<description>Somehow in IE8 I only see the background-color and none of the background-images. It does seem to load correctly, but it is immediately replaced with the background-color. Even if I add a IE-only conditional statement. 

Have a look at http://connecteu.hieruwwebsite.nl/ if you want, that&#039;s what I&#039;ve been working on. 

Thanks!</description>
		<content:encoded><![CDATA[<p>Somehow in IE8 I only see the background-color and none of the background-images. It does seem to load correctly, but it is immediately replaced with the background-color. Even if I add a IE-only conditional statement. </p>
<p>Have a look at <a href="http://connecteu.hieruwwebsite.nl/" rel="nofollow">http://connecteu.hieruwwebsite.nl/</a> if you want, that&#8217;s what I&#8217;ve been working on. </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: helen</title>
		<link>http://helephant.com/2009/11/css3-multiple-background-images/#comment-3224</link>
		<dc:creator>helen</dc:creator>
		<pubDate>Sat, 05 Dec 2009 17:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://helephant.com/?p=1694#comment-3224</guid>
		<description>You have to put the background colour on the last background declaration:
background: url(&quot;multiple-background-bottom.png&quot;) repeat-x bottom,
            url(&quot;multiple-background-image.png&quot;) no-repeat bottom right,
            pink url(&quot;multiple-background-bg.png&quot;) no-repeat;

The browser works from last to first when painting the div so the last one is at the back and the first one is at the front. That&#039;s why the last one is the only one it makes sense to have a background colour on. If the browser painted a background colour when processing one of the other background declarations it would overwrite all the backgrounds that were underneath it. 

I&#039;m not sure what you mean by IE8. What&#039;s not working?</description>
		<content:encoded><![CDATA[<p>You have to put the background colour on the last background declaration:<br />
background: url(&#8221;multiple-background-bottom.png&#8221;) repeat-x bottom,<br />
            url(&#8221;multiple-background-image.png&#8221;) no-repeat bottom right,<br />
            pink url(&#8221;multiple-background-bg.png&#8221;) no-repeat;</p>
<p>The browser works from last to first when painting the div so the last one is at the back and the first one is at the front. That&#8217;s why the last one is the only one it makes sense to have a background colour on. If the browser painted a background colour when processing one of the other background declarations it would overwrite all the backgrounds that were underneath it. </p>
<p>I&#8217;m not sure what you mean by IE8. What&#8217;s not working?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wil</title>
		<link>http://helephant.com/2009/11/css3-multiple-background-images/#comment-3205</link>
		<dc:creator>Wil</dc:creator>
		<pubDate>Fri, 04 Dec 2009 17:14:39 +0000</pubDate>
		<guid isPermaLink="false">http://helephant.com/?p=1694#comment-3205</guid>
		<description>Hi Helen, very nice post. I&#039;ve applied multiple backgrounds to a new site and added a single background for browsers who don&#039;t support it yet. 

I&#039;ve also applied a background-color to the divs with multiple backgrounds. It seems that you can&#039;t use this in a one-line statement, such as: 
background: #fff url(/image1.png), url(/image2.png); 
Is this correct? To make it work, I have to add the background-color after I set the background-images. 

All works fine in FF and IE7, but in IE8 only the background-color is shown. Might there be a solution to this? 

Best wishes, 

Wil</description>
		<content:encoded><![CDATA[<p>Hi Helen, very nice post. I&#8217;ve applied multiple backgrounds to a new site and added a single background for browsers who don&#8217;t support it yet. </p>
<p>I&#8217;ve also applied a background-color to the divs with multiple backgrounds. It seems that you can&#8217;t use this in a one-line statement, such as:<br />
background: #fff url(/image1.png), url(/image2.png);<br />
Is this correct? To make it work, I have to add the background-color after I set the background-images. </p>
<p>All works fine in FF and IE7, but in IE8 only the background-color is shown. Might there be a solution to this? </p>
<p>Best wishes, </p>
<p>Wil</p>
]]></content:encoded>
	</item>
</channel>
</rss>
