<?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>Ryan Coughlin &#124; Web and Graphic Designer &#187; transparency</title>
	<atom:link href="http://www.ryancoughlin.com/tag/transparency/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryancoughlin.com</link>
	<description></description>
	<lastBuildDate>Fri, 26 Mar 2010 00:07:01 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Understanding Browser specific CSS Opacity Properties</title>
		<link>http://www.ryancoughlin.com/2008/11/13/understanding-css-opacity-properties/</link>
		<comments>http://www.ryancoughlin.com/2008/11/13/understanding-css-opacity-properties/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 20:50:28 +0000</pubDate>
		<dc:creator>Ryan Coughlin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[opacity]]></category>
		<category><![CDATA[properties]]></category>
		<category><![CDATA[transparency]]></category>

		<guid isPermaLink="false">http://www.ryancoughlin.com/?p=171</guid>
		<description><![CDATA[There are various CSS opacity properties out there that allow us to adjust the transparency of an element on our websites, but the thing is amongst the various available properties, which ones apply for which browsers? There are several ways to adjust opacity for an element but each are browser specific.
The below are all of [...]


Related posts:<ol><li><a href='http://www.ryancoughlin.com/2009/11/05/internet-explorer-6-still-the-popular-browser/' rel='bookmark' title='Permanent Link: Internet Explorer 6 Still the Popular Browser?'>Internet Explorer 6 Still the Popular Browser?</a> <small>A friend who started Cat on The Couch Productions, tweeted...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>There are various CSS opacity properties out there that allow us to adjust the transparency of an element on our websites, but the thing is amongst the various available properties, which ones apply for which browsers? There are several ways to adjust opacity for an element but each are browser specific.</p>
<p>The below are all of the same but, each work for a certain browser. Besides the last one which is the standard CSS opacity property.</p>
<pre lang="css">/* Applies to IE5-7 */
filter:alpha(opacity=85);

/* Applies to IE8 */
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";

/* Applies to Mozilla and Firefox */
-moz-opacity:0.85;

/* Applies to Safari 1.1-1.3 */
-khtml-opacity: 0.85;

/* Standard CSS property */
opacity: 0.85;</pre>
<p>Since current browsers do not adopt to the same standards, developers will use the numerous CSS properties to create an equal cross-browser opacity experience, by placing each of those properties within there CSS.</p>
<p>The<strong> opacity </strong>property is supported by Netscape 7.2+, Firefox, Safari 2+, Opera 9+. The values that this property can accept are: 0.0 &#8211; 1.0. The lower the value the more transparent the element is.</p>
<p><span style="color: #000000;">The</span><strong> filter:alpha(opacity) </strong>property<strong> </strong>can range anywhere from 0-100. And like the the property above, the lower the value the more transparent.</p>
<p>The<strong> -khtml-opacity </strong>property<code> </code>was built with Webkit and it is based on the KHTML engine and associated the <code>-khtml</code> prefix to the <code>-opacity</code></p>
<p>The<strong> -moz-opacity </strong>property applies for older versions of Mozilla browsers.</p>


<p>Related posts:<ol><li><a href='http://www.ryancoughlin.com/2009/11/05/internet-explorer-6-still-the-popular-browser/' rel='bookmark' title='Permanent Link: Internet Explorer 6 Still the Popular Browser?'>Internet Explorer 6 Still the Popular Browser?</a> <small>A friend who started Cat on The Couch Productions, tweeted...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ryancoughlin.com/2008/11/13/understanding-css-opacity-properties/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
