<?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; CSS</title>
	<atom:link href="http://www.ryancoughlin.com/tag/css/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>Reload CSS without a page refresh</title>
		<link>http://www.ryancoughlin.com/2009/10/07/reload-your-css-without-a-page-refresh/</link>
		<comments>http://www.ryancoughlin.com/2009/10/07/reload-your-css-without-a-page-refresh/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 16:28:07 +0000</pubDate>
		<dc:creator>Ryan Coughlin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[bookmarklet]]></category>
		<category><![CDATA[reload]]></category>

		<guid isPermaLink="false">http://www.ryancoughlin.com/?p=572</guid>
		<description><![CDATA[As I was working this afternoon, Rogie King posted a tweet about a Bookmarklet that allows you to reload your CSS on your page without reloading the page.
So far I have been loving this, it is the perfect tool for your workspace. I highly recommend this to others. Thanks to the creator of this, can [...]


Related posts:<ol><li><a href='http://www.ryancoughlin.com/2009/03/30/create-a-jquery-accordion-remain-open-after-page-load/' rel='bookmark' title='Permanent Link: Create a jQuery Accordion &#8211; remain open after page load'>Create a jQuery Accordion &#8211; remain open after page load</a> <small>Quick fix to keep accordion section open after loading different...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>As I was working this afternoon, <a href="http://www.komodomedia.com" target="_blank">Rogie King</a> posted a tweet about a Bookmarklet that allows you to reload your CSS on your page without reloading the page.</p>
<p>So far I have been loving this, it is the perfect tool for your workspace. I highly recommend this to others. Thanks to the creator of this, can grab this <a href="http://david.dojotoolkit.org/recss.html" target="_blank">bookmarklet</a> and start using it.</p>
<ol>
<li>Drag it to your bookmark toolbar</li>
<li>Open a site your are designing</li>
<li>To view your new CSS changes, just click the bookmark in the toolbar, and wa la</li>
</ol>
<p>Quick and really easy. Thought i&#8217;d share this tool with everyone. Give it a try.</p>


<p>Related posts:<ol><li><a href='http://www.ryancoughlin.com/2009/03/30/create-a-jquery-accordion-remain-open-after-page-load/' rel='bookmark' title='Permanent Link: Create a jQuery Accordion &#8211; remain open after page load'>Create a jQuery Accordion &#8211; remain open after page load</a> <small>Quick fix to keep accordion section open after loading different...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.ryancoughlin.com/2009/10/07/reload-your-css-without-a-page-refresh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
