<?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: 5 CSS Shadow Tips</title>
	<atom:link href="http://www.devlounge.net/design/5-css-shadow-tips/feed" rel="self" type="application/rss+xml" />
	<link>http://www.devlounge.net/design/5-css-shadow-tips</link>
	<description>Design, Develop, and Grow</description>
	<lastBuildDate>Wed, 08 Feb 2012 09:03:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Scott Foley</title>
		<link>http://www.devlounge.net/design/5-css-shadow-tips/comment-page-1#comment-182844</link>
		<dc:creator>Scott Foley</dc:creator>
		<pubDate>Mon, 29 Mar 2010 05:34:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/?p=4605#comment-182844</guid>
		<description>Great article. Now if IE would get on board it would be even better!</description>
		<content:encoded><![CDATA[<p>Great article. Now if IE would get on board it would be even better!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon L.</title>
		<link>http://www.devlounge.net/design/5-css-shadow-tips/comment-page-1#comment-182824</link>
		<dc:creator>Jon L.</dc:creator>
		<pubDate>Thu, 25 Mar 2010 21:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/?p=4605#comment-182824</guid>
		<description>Good point, Billee - I&#039;ve also found the low opacity black shadow to be extremely useful.</description>
		<content:encoded><![CDATA[<p>Good point, Billee &#8211; I&#8217;ve also found the low opacity black shadow to be extremely useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Billee D.</title>
		<link>http://www.devlounge.net/design/5-css-shadow-tips/comment-page-1#comment-182817</link>
		<dc:creator>Billee D.</dc:creator>
		<pubDate>Tue, 23 Mar 2010 15:54:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/?p=4605#comment-182817</guid>
		<description>Thanks for the read, Lorraine. I would have to say that I disagree with one concept:

&lt;blockquote&gt;
  Stay away from using black as your shadow- it looks unnatural, and can make your text more difficult to read.
&lt;/blockquote&gt;

In my own experience I have found that black (and white) work rather well when you specify the color in RGBA syntax and apply a low opacity:

&lt;code&gt;
h1 {
text-shadow: 0.055556em 0.055556em 0.083334em &lt;strong&gt;rgba(0, 0, 0, 0.3)&lt;/strong&gt;;
}

&lt;/code&gt;

Specifying the color of the shadow in RGBA syntax allows the semi-transparent, all black shadow to blend into the background color it sits above. You can &lt;a href=&quot;http://dl.dropbox.com/u/126928/text-shadow-test.html&quot; rel=&quot;nofollow&quot;&gt;check out an example&lt;/a&gt; I put together here: http://dl.dropbox.com/u/126928/text-shadow-test.html

By sticking with RGBA black for the text shadows you can easily change the background color without having to change the text shadow color. It blends nicely into any background. I&#039;m pretty sure I first saw this done on Wilson Miner&#039;s website. It&#039;s a pretty safe bet that the browsers that implement text-shadow also have RGBA support as well. There are even ways to fake it in IE using the proprietary filter syntax.

Thanks for the read! :)</description>
		<content:encoded><![CDATA[<p>Thanks for the read, Lorraine. I would have to say that I disagree with one concept:</p>
<blockquote><p>
  Stay away from using black as your shadow- it looks unnatural, and can make your text more difficult to read.
</p></blockquote>
<p>In my own experience I have found that black (and white) work rather well when you specify the color in RGBA syntax and apply a low opacity:</p>
<p><code><br />
h1 {<br />
text-shadow: 0.055556em 0.055556em 0.083334em <strong>rgba(0, 0, 0, 0.3)</strong>;<br />
}</p>
<p></code></p>
<p>Specifying the color of the shadow in RGBA syntax allows the semi-transparent, all black shadow to blend into the background color it sits above. You can <a href="http://dl.dropbox.com/u/126928/text-shadow-test.html" rel="nofollow">check out an example</a> I put together here: <a href="http://dl.dropbox.com/u/126928/text-shadow-test.html" rel="nofollow">http://dl.dropbox.com/u/126928/text-shadow-test.html</a></p>
<p>By sticking with RGBA black for the text shadows you can easily change the background color without having to change the text shadow color. It blends nicely into any background. I&#8217;m pretty sure I first saw this done on Wilson Miner&#8217;s website. It&#8217;s a pretty safe bet that the browsers that implement text-shadow also have RGBA support as well. There are even ways to fake it in IE using the proprietary filter syntax.</p>
<p>Thanks for the read! <img src='http://www.devlounge.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Eagleton</title>
		<link>http://www.devlounge.net/design/5-css-shadow-tips/comment-page-1#comment-182815</link>
		<dc:creator>Mark Eagleton</dc:creator>
		<pubDate>Tue, 23 Mar 2010 14:35:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/?p=4605#comment-182815</guid>
		<description>Here is the RGBA version of the above rule that works in Webkit, Opera and Geko browsers:

h3 { text-shadow: rgba(0,0,0,.5) .1em .1em .1em; }

I find I have more control with rgba, especially when creating highlight and emboss effects for text.</description>
		<content:encoded><![CDATA[<p>Here is the RGBA version of the above rule that works in Webkit, Opera and Geko browsers:</p>
<p>h3 { text-shadow: rgba(0,0,0,.5) .1em .1em .1em; }</p>
<p>I find I have more control with rgba, especially when creating highlight and emboss effects for text.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Some links for light reading (23/03/10) &#124; Max Design</title>
		<link>http://www.devlounge.net/design/5-css-shadow-tips/comment-page-1#comment-182814</link>
		<dc:creator>Some links for light reading (23/03/10) &#124; Max Design</dc:creator>
		<pubDate>Tue, 23 Mar 2010 12:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/?p=4605#comment-182814</guid>
		<description>[...] 5 CSS Shadow Tips [...]</description>
		<content:encoded><![CDATA[<p>[...] 5 CSS Shadow Tips [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Aguilar</title>
		<link>http://www.devlounge.net/design/5-css-shadow-tips/comment-page-1#comment-182806</link>
		<dc:creator>Alex Aguilar</dc:creator>
		<pubDate>Sun, 21 Mar 2010 19:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/?p=4605#comment-182806</guid>
		<description>Didn`t know that we are able to put shadow with CSS...
Or..is this a new feature of CSS 3?</description>
		<content:encoded><![CDATA[<p>Didn`t know that we are able to put shadow with CSS&#8230;<br />
Or..is this a new feature of CSS 3?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Puppy Training Tips: Get A Jump Start Training Your New Puppy</title>
		<link>http://www.devlounge.net/design/5-css-shadow-tips/comment-page-1#comment-182802</link>
		<dc:creator>Puppy Training Tips: Get A Jump Start Training Your New Puppy</dc:creator>
		<pubDate>Sat, 20 Mar 2010 02:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.devlounge.net/?p=4605#comment-182802</guid>
		<description>[...] 5 CSS Shadow Tips &#124; Devlounge [...]</description>
		<content:encoded><![CDATA[<p>[...] 5 CSS Shadow Tips | Devlounge [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

