<?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>Thoughts on Design &#187; CSS</title>
	<atom:link href="http://www.jamischarles.com/blog/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jamischarles.com/blog</link>
	<description>Thoughts on Web Design and Front-end Coding. Served up Monthly by Jamis Charles</description>
	<lastBuildDate>Fri, 06 Jan 2012 21:11:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to write a CSS rule that will affect every element:</title>
		<link>http://www.jamischarles.com/blog/how-to-write-a-css-rule-that-will-affect-every-element/</link>
		<comments>http://www.jamischarles.com/blog/how-to-write-a-css-rule-that-will-affect-every-element/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 16:28:52 +0000</pubDate>
		<dc:creator>jamis</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://www.bluebreeze.net/blog/?p=25</guid>
		<description><![CDATA[Sometimes there&#8217;s a need to reset all of the margins on a page, or you simply want something specifically applied to each element without having to count on inheritances to do the job. The solution: &#8220;*&#8221; or &#8220;universal selector&#8221;. This seems familiar from other languages right? Well, it should be. It simply means &#8220;everything&#8221; in [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes there&#8217;s a need to reset all of the margins on a page, or you simply want something specifically applied to each element without having to count on inheritances to do the job. The solution: &#8220;*&#8221; or &#8220;universal selector&#8221;. This seems familiar from other languages right? Well, it should be. It simply means &#8220;everything&#8221; in a selected area.</p>
<p>The following will apply a gray background to every element on a page.</p>
<pre class="css">* {
    background-color: #eee;
}</pre>
<p>What if you want to get more specific?<br />
With this code, everything within the div with the id=&#8221;wrapper&#8221; will have a gray background.</p>
<pre class="css">div#wrapper * {
    background-color: #eee;
}</pre>
<p>Obviously any properties can be used here. Enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jamischarles.com/blog/how-to-write-a-css-rule-that-will-affect-every-element/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add an external CSS Stylesheet to your page</title>
		<link>http://www.jamischarles.com/blog/add-an-external-css-stylesheet-to-your-page/</link>
		<comments>http://www.jamischarles.com/blog/add-an-external-css-stylesheet-to-your-page/#comments</comments>
		<pubDate>Thu, 17 May 2007 00:00:25 +0000</pubDate>
		<dc:creator>jamis</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.bluebreeze.net/blog/?p=4</guid>
		<description><![CDATA[Adding an external stylesheet to your page is preferable to using inline CSS (or just pasting it into your head code). Instead use and external file name &#8220;*.css&#8221;. To link to the file, write the code below into your head code: &#60;link rel="stylesheet" type="text/css" href="nameofYourCSSFile.css" /&#62;]]></description>
			<content:encoded><![CDATA[<p>Adding an external stylesheet to your page is preferable to using inline CSS (or just pasting it into your head code). Instead use and external file name &#8220;*.css&#8221;. To link to the file, write the code below into your head code:</p>
<pre class="xhtml">&lt;link rel="stylesheet" type="text/css" href="nameofYourCSSFile.css" /&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.jamischarles.com/blog/add-an-external-css-stylesheet-to-your-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

