<?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>Noob Flash &#187; CSS</title>
	<atom:link href="http://www.noobflash.com/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noobflash.com</link>
	<description>Digital Creation News &#038; Tutorials</description>
	<lastBuildDate>Mon, 21 Jun 2010 18:14:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Preload Images with CSS</title>
		<link>http://www.noobflash.com/how-to-preload-images-with-css/</link>
		<comments>http://www.noobflash.com/how-to-preload-images-with-css/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 07:07:30 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.noobflash.com/?p=246</guid>
		<description><![CDATA[This is a simple way to preload a few images using only CSS.

#imagePreload {
       display: inline;
       height: 0px;
       width: 0px;
       background-image: url(imagePath1.extension);
       background-image: url(imagePath2.extension);
  [...]]]></description>
		<wfw:commentRss>http://www.noobflash.com/how-to-preload-images-with-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create SEO Friendly URLs</title>
		<link>http://www.noobflash.com/create-seo-friendly-urls/</link>
		<comments>http://www.noobflash.com/create-seo-friendly-urls/#comments</comments>
		<pubDate>Sun, 23 Aug 2009 21:22:09 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Mod_Rewrite]]></category>
		<category><![CDATA[SEO Friendly URL]]></category>
		<category><![CDATA[URL Rewrite]]></category>

		<guid isPermaLink="false">http://www.noobflash.com/?p=186</guid>
		<description><![CDATA[If you&#8217;re like me, you get tired of seeing those ugly query strings tacked onto your website url.  On really nice (and easy) solution for this is to use Apache Mod_Rewrite.  This generally only requires adding a few lines to your .htaccess file.  When I started trying to create my first SEO [...]]]></description>
		<wfw:commentRss>http://www.noobflash.com/create-seo-friendly-urls/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Use CSS to Style HTML Input Elements Separately</title>
		<link>http://www.noobflash.com/how-to-use-css-to-style-html-input-elements-separately/</link>
		<comments>http://www.noobflash.com/how-to-use-css-to-style-html-input-elements-separately/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 23:41:21 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.noobflash.com/how-to-use-css-to-style-html-input-elements-separately/</guid>
		<description><![CDATA[A few day ago, I was doing some CSS styling and ran across something that I thought would be useful.
If you ever want to style multiple HTML input elements separately using CSS, you just need to access the type attribute.
For Example, if I want to set the text color of my text field to white, [...]]]></description>
		<wfw:commentRss>http://www.noobflash.com/how-to-use-css-to-style-html-input-elements-separately/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set Style Dynamically With JavaScript</title>
		<link>http://www.noobflash.com/set-style-dynamically-with-javascript/</link>
		<comments>http://www.noobflash.com/set-style-dynamically-with-javascript/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 01:13:57 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.noobflash.com/?p=94</guid>
		<description><![CDATA[Changing the style of an object is as simple as finding the object on the page, then setting the new style value.  Use the code below as an example.

//Find the div you want to update
var divArray = document.getElementById('myDiv');
//Set the width style
divArray.style.width = '300px';

CSS attribute names are slightly different when used in JavaScript, so you [...]]]></description>
		<wfw:commentRss>http://www.noobflash.com/set-style-dynamically-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross Browser CSS Min-Height</title>
		<link>http://www.noobflash.com/cross-browser-css-min-height/</link>
		<comments>http://www.noobflash.com/cross-browser-css-min-height/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 05:03:23 +0000</pubDate>
		<dc:creator>Aaron</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.noobflash.com/cross-browser-css-min-height/</guid>
		<description><![CDATA[There is a Min-Height attribute in CSS. It is useful, but not well supported by IE 6. The following is the best way to set a Minimum Height on a div that is cross-browser compatible.

min-height:200px;
height:auto !important;
height:200px;

]]></description>
		<wfw:commentRss>http://www.noobflash.com/cross-browser-css-min-height/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.905 seconds -->
