<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sidera Design &#187; css</title>
	<atom:link href="http://sideradesign.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://sideradesign.com</link>
	<description>Engaging and easy to manage websites</description>
	<lastBuildDate>Sat, 04 Sep 2010 15:58:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>IE transparency and font rendering</title>
		<link>http://sideradesign.com/2010/02/06/ie-transparency-and-font-rendering/</link>
		<comments>http://sideradesign.com/2010/02/06/ie-transparency-and-font-rendering/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 23:16:09 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Article]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://sideradesign.com/?p=247</guid>
		<description><![CDATA[<p>While designing a website, I wanted to add some semi-transparent backgrounds using <a href="http://24ways.org/2009/working-with-rgba-colour">CSS rgba.</a><br />
In this article, the author suggests using a PNG as a fallback for browsers that don&#8217;t support the rgba declaration.<br />
Having read about Internet&#8230; <a href="http://sideradesign.com/2010/02/06/ie-transparency-and-font-rendering/" class="read_more">Continue reading</a></p>]]></description>
			<content:encoded><![CDATA[<p>While designing a website, I wanted to add some semi-transparent backgrounds using <a href="http://24ways.org/2009/working-with-rgba-colour">CSS rgba.</a><br />
In this article, the author suggests using a PNG as a fallback for browsers that don&#8217;t support the rgba declaration.<br />
Having read about Internet Explorer&#8217;s proprietary filters, I decided to use that instead, to avoid having to download another image.<br />
I added the following declarations to the IE stylesheet with conditional comments:</p>
<pre>
.content, #primary {
       background:transparent;

     filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80ebe7e7,endColorstr=#80ebe7e7);

	}

.page-title, .singular-page-title {
	       background:transparent;

                  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80146ea4,endColorstr=#80146ea4);
}
</pre>
<p>This is the result:<br />
<a href="http://sideradesign.com/files/2010/02/with-transparency.gif"><img src="http://sideradesign.com/files/2010/02/with-transparency.gif" alt="" width="402" height="175" class="alignnone size-full wp-image-246" /></a></p>
<p>You can see that the result is not very pretty! The font doesn&#8217;t seem to render very well.</p>
<p>I suspected that the IE filters were the culprit, so I removed the declarations, and here is the result:<br />
<a href="http://sideradesign.com/files/2010/02/with-transparency.gif"><img src="http://sideradesign.com/files/2010/02/no-transparency.gif" alt="" width="402" height="175" class="alignnone size-full wp-image-246" /></a></p>
<p>Much better!</p>
<p>Conclusion: I&#8217;ll use the PNG fallback method.</p>
<p>Have you experienced this issue? Is there a fix?<br />
Leave your comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://sideradesign.com/2010/02/06/ie-transparency-and-font-rendering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
