<?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: Cross-browser CSS gradients</title>
	<atom:link href="http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/</link>
	<description>Adventures in teh interwebz</description>
	<lastBuildDate>Thu, 16 Jun 2011 15:27:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joe Moody</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-134</link>
		<dc:creator>Joe Moody</dc:creator>
		<pubDate>Tue, 21 Dec 2010 16:15:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-134</guid>
		<description>Simply beautiful buttons, thank you!</description>
		<content:encoded><![CDATA[<p>Simply beautiful buttons, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-133</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Wed, 08 Dec 2010 14:45:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-133</guid>
		<description>Came across this GEM which worked great except under IE8 running ASP.NET 3.5.  I kept getting the default style instead of the gradient.  Found out that you need to add 
the width: 100%; at the beginning and that fixed the problem.  So all my browsers including IE8 are happy:))

.gradientV{
/* thanks to http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/ */
/* and http://www.puremango.co.uk/2010/04/css-gradient/ */
   width:100%;
    /* fallback (Opera) */
    background: #68A2D6;
    /* Mozilla: */
    background: -moz-linear-gradient(top, #F0F8FF, #68A2D6);
    /* Chrome, Safari:*/
    background: -webkit-gradient(linear,
                left top, left bottom, from(#F0F8FF), to(#68A2D6));
    /* MSIE */
    filter: progid:DXImageTransform.Microsoft.Gradient(
                StartColorStr=&#039;#F0F8FF&#039;, EndColorStr=&#039;#68A2D6&#039;, GradientType=0);
  }</description>
		<content:encoded><![CDATA[<p>Came across this GEM which worked great except under IE8 running ASP.NET 3.5.  I kept getting the default style instead of the gradient.  Found out that you need to add<br />
the width: 100%; at the beginning and that fixed the problem.  So all my browsers including IE8 are happy:))</p>
<p>.gradientV{<br />
/* thanks to <a href="http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/" rel="nofollow">http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/</a> */<br />
/* and <a href="http://www.puremango.co.uk/2010/04/css-gradient/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.puremango.co.uk/2010/04/css-gradient/?referer=');">http://www.puremango.co.uk/2010/04/css-gradient/</a> */<br />
   width:100%;<br />
    /* fallback (Opera) */<br />
    background: #68A2D6;<br />
    /* Mozilla: */<br />
    background: -moz-linear-gradient(top, #F0F8FF, #68A2D6);<br />
    /* Chrome, Safari:*/<br />
    background: -webkit-gradient(linear,<br />
                left top, left bottom, from(#F0F8FF), to(#68A2D6));<br />
    /* MSIE */<br />
    filter: progid:DXImageTransform.Microsoft.Gradient(<br />
                StartColorStr=&#8217;#F0F8FF&#8217;, EndColorStr=&#8217;#68A2D6&#8242;, GradientType=0);<br />
  }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dreamincolor</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-132</link>
		<dc:creator>dreamincolor</dc:creator>
		<pubDate>Mon, 01 Nov 2010 14:51:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-132</guid>
		<description>Internet Explorer gradient filter doesn’t support color-stop, gradient angle, and radial gradient. That means you can only specify either horizontal or vertical linear gradient with 2 colors: StartColorStr and EndColorStr.

Check this out: http://www.dreamincoloronline.com/css-gradient-for-all-browsers/</description>
		<content:encoded><![CDATA[<p>Internet Explorer gradient filter doesn’t support color-stop, gradient angle, and radial gradient. That means you can only specify either horizontal or vertical linear gradient with 2 colors: StartColorStr and EndColorStr.</p>
<p>Check this out: <a href="http://www.dreamincoloronline.com/css-gradient-for-all-browsers/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.dreamincoloronline.com/css-gradient-for-all-browsers/?referer=');">http://www.dreamincoloronline.com/css-gradient-for-all-browsers/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Beesley</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-130</link>
		<dc:creator>David Beesley</dc:creator>
		<pubDate>Tue, 19 Oct 2010 00:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-130</guid>
		<description>Excellent work fakedarren,
Your tips on Gradients, Border radius and hovers have really helped me in my day to day work.
And don&#039;t worry, I have given you plenty of credit in my css</description>
		<content:encoded><![CDATA[<p>Excellent work fakedarren,<br />
Your tips on Gradients, Border radius and hovers have really helped me in my day to day work.<br />
And don&#8217;t worry, I have given you plenty of credit in my css</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elvis McNeely</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-126</link>
		<dc:creator>Elvis McNeely</dc:creator>
		<pubDate>Sat, 11 Sep 2010 00:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-126</guid>
		<description>Wow! Thanks for the examples. It seems you can never know / learn everything about design and development... Thanks again!</description>
		<content:encoded><![CDATA[<p>Wow! Thanks for the examples. It seems you can never know / learn everything about design and development&#8230; Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Binyamin</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-119</link>
		<dc:creator>Binyamin</dc:creator>
		<pubDate>Thu, 22 Jul 2010 18:01:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-119</guid>
		<description>It does not work on Opera browser (it does not support CSS background linear-gradient). Also add CSS border-radius: 5px; for Opera support.</description>
		<content:encoded><![CDATA[<p>It does not work on Opera browser (it does not support CSS background linear-gradient). Also add CSS border-radius: 5px; for Opera support.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fakedarren</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-83</link>
		<dc:creator>fakedarren</dc:creator>
		<pubDate>Thu, 15 Apr 2010 00:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-83</guid>
		<description>@Mody: It require at least Safari 4, I just tested my example on both PC and mac and it&#039;s fine. If you&#039;re in Safari 4, double-check the order of declarations and your syntax - it&#039;s really easy to get wrong :D</description>
		<content:encoded><![CDATA[<p>@Mody: It require at least Safari 4, I just tested my example on both PC and mac and it&#8217;s fine. If you&#8217;re in Safari 4, double-check the order of declarations and your syntax &#8211; it&#8217;s really easy to get wrong <img src='http://blog.fakedarren.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mody</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-82</link>
		<dc:creator>Mody</dc:creator>
		<pubDate>Wed, 14 Apr 2010 23:33:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-82</guid>
		<description>Hey this was so cool , But It isn&#039;t taking effect with safari , any idea ?</description>
		<content:encoded><![CDATA[<p>Hey this was so cool , But It isn&#8217;t taking effect with safari , any idea ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSS Gradient Background &#8211; Cross Browser! &#171; puremango.co.uk</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-81</link>
		<dc:creator>CSS Gradient Background &#8211; Cross Browser! &#171; puremango.co.uk</dc:creator>
		<pubDate>Sat, 03 Apr 2010 02:16:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-81</guid>
		<description>[...] this little CSS gem to me, and now dear reader I pass it to you. It was orignally developed by FakeDarren, who posted a great little CSS button example. I find it useful for those times when designers get [...]</description>
		<content:encoded><![CDATA[<p>[...] this little CSS gem to me, and now dear reader I pass it to you. It was orignally developed by FakeDarren, who posted a great little CSS button example. I find it useful for those times when designers get [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Howard Yeend</title>
		<link>http://blog.fakedarren.com/2010/01/cross-browser-css-gradients/comment-page-1/#comment-80</link>
		<dc:creator>Howard Yeend</dc:creator>
		<pubDate>Thu, 01 Apr 2010 16:01:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.fakedarren.com/?p=233#comment-80</guid>
		<description>Nice! I&#039;d completely forgotten about IE&#039;s CSS Filters.</description>
		<content:encoded><![CDATA[<p>Nice! I&#8217;d completely forgotten about IE&#8217;s CSS Filters.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

