<?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>CSS universe</title>
	<atom:link href="http://www.cssuniverse.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cssuniverse.com</link>
	<description></description>
	<lastBuildDate>Fri, 24 Jul 2009 14:19:46 +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>Three column layout</title>
		<link>http://www.cssuniverse.com/three-column-layout/</link>
		<comments>http://www.cssuniverse.com/three-column-layout/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 14:19:08 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://cssuniverse.com/?p=3</guid>
		<description><![CDATA[
&#60;style type=&#8221;text/css&#8221;&#62;
&#60;!&#8211;
#header {
background: #0f0;
position: absolute;
top: 0px;
left: 0px;
width: 800px;
height: 100px;
}
#leftcol {
background: #f00;
position: absolute;
top: 100px;
left: 0px;
width: 150px;
height: 500px;
}
#rightcol {
background: #f00;
position: absolute;
top: 100px;
left: 650px;
width: 150px;
height: 500px;
}
#content {
background: #fff;
position: absolute;
top: 100px;
left: 150px;
width: 500px;
height: 500px;
}
#footer {
background: #0f0;
position: absolute;
top: 500px;
left: 0px;
width: 800px;
height: 100px;
}
&#8211;&#62;
&#60;/style&#62;
The HTML code is the following:
&#60;div id=&#8221;header&#8221;&#62;Header Section&#60;/div&#62;
&#60;div id=&#8221;leftcol&#8221;&#62;Left Section&#60;/div&#62;
&#60;div id=&#8221;content&#8221;&#62;Content Section&#60;/div&#62;
&#60;div id=&#8221;rightcol&#8221;&#62;Right Section&#60;/div&#62;
&#60;div id=&#8221;footer&#8221;&#62;Footer Section&#60;/div&#62;
Here is the complete [...]]]></description>
			<content:encoded><![CDATA[<p><span></p>
<blockquote style="margin-right: 0px;" dir="ltr"><p><span style="font-family: courier new,courier,mono;">&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
#header {<br />
background: #0f0;<br />
position: absolute;<br />
top: 0px;<br />
left: 0px;<br />
width: 800px;<br />
height: 100px;<br />
}<br />
#leftcol {<br />
background: #f00;<br />
position: absolute;<br />
top: 100px;<br />
left: 0px;<br />
width: 150px;<br />
height: 500px;<br />
}<br />
#rightcol {<br />
background: #f00;<br />
position: absolute;<br />
top: 100px;<br />
left: 650px;<br />
width: 150px;<br />
height: 500px;<br />
}<br />
#content {<br />
background: #fff;<br />
position: absolute;<br />
top: 100px;<br />
left: 150px;<br />
width: 500px;<br />
height: 500px;<br />
}<br />
#footer {<br />
background: #0f0;<br />
position: absolute;<br />
top: 500px;<br />
left: 0px;<br />
width: 800px;<br />
height: 100px;<br />
}<br />
&#8211;&gt;<br />
&lt;/style&gt;</span></p></blockquote>
<p>The HTML code is the following:</p>
<blockquote style="margin-right: 0px;" dir="ltr"><p><span style="font-family: courier new,courier,mono;">&lt;div id=&#8221;header&#8221;&gt;Header Section&lt;/div&gt;<br />
&lt;div id=&#8221;leftcol&#8221;&gt;Left Section&lt;/div&gt;<br />
&lt;div id=&#8221;content&#8221;&gt;Content Section&lt;/div&gt;<br />
&lt;div id=&#8221;rightcol&#8221;&gt;Right Section&lt;/div&gt;<br />
&lt;div id=&#8221;footer&#8221;&gt;Footer Section&lt;/div&gt;</span></p></blockquote>
<p>Here is the complete code:</p>
<blockquote style="margin-right: 0px;" dir="ltr"><p><span style="font-family: courier new,courier,mono;">&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;THREE-COLUMN FIXED LAYOUT WITH FIXED BOXES&lt;/title&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
&lt;!&#8211;<br />
#header {<br />
background: #0f0;<br />
position: absolute;<br />
top: 0px;<br />
left: 0px;<br />
width: 800px;<br />
height: 100px;<br />
}<br />
#leftcol {<br />
background: #f00;<br />
position: absolute;<br />
top: 100px;<br />
left: 0px;<br />
width: 150px;<br />
height: 500px;<br />
}<br />
#rightcol {<br />
background: #f00;<br />
position: absolute;<br />
left: 650px;<br />
top: 100px;<br />
width: 150px;<br />
height: 500px;<br />
}<br />
#content {<br />
background: #fff;<br />
position: absolute;<br />
top: 100px;<br />
left: 150px;<br />
width: 500px;<br />
height: 500px;<br />
}<br />
#footer {<br />
background: #0f0;<br />
position: absolute;<br />
top: 500px;<br />
left: 0px;<br />
width: 800px;<br />
height: 100px;<br />
}<br />
&#8211;&gt;<br />
&lt;/style&gt;<br />
&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;div id=&#8221;header&#8221;&gt;Header Section&lt;/div&gt;<br />
&lt;div id=&#8221;leftcol&#8221;&gt;Left Section&lt;/div&gt;<br />
&lt;div id=&#8221;content&#8221;&gt;Content Section&lt;/div&gt;<br />
&lt;div id=&#8221;rightcol&#8221;&gt;Right Section&lt;/div&gt;<br />
&lt;div id=&#8221;footer&#8221;&gt;Footer Section&lt;/div&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</span></p></blockquote>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssuniverse.com/three-column-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
