<?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>gego.info &#187; webstandards</title>
	<atom:link href="http://www.gego.info/tag/webstandards/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gego.info</link>
	<description>gernot's nearly up-to-date blog</description>
	<lastBuildDate>Tue, 07 Feb 2012 13:54:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>CSS &#8211; fluid vs. fixed Design</title>
		<link>http://www.gego.info/2006/01/25/css-fluid-vs-fixed-design/</link>
		<comments>http://www.gego.info/2006/01/25/css-fluid-vs-fixed-design/#comments</comments>
		<pubDate>Wed, 25 Jan 2006 19:21:48 +0000</pubDate>
		<dc:creator>gernot</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[webstandards]]></category>

		<guid isPermaLink="false">http://www.gego.info/index.php/2006/01/25/css-fluid-vs-fixed-design/</guid>
		<description><![CDATA[small CSS snippet for fluid or fixed Page.]]></description>
			<content:encoded><![CDATA[<p>Everyone knows the problem:  Webpages which have too much text on too small space or vica versa.  The solution is either make the page fluid or fixed, and with the help of css this is pretty simple:</p>
<h2>fixed</h2>
<blockquote><p><font color="#cc3300"> body</font> {<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background-color: #000;<br />
&nbsp;&nbsp;&nbsp;&nbsp;color: #fff;<br />
}<br />
<font color="#cc3300"> #page</font> {<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin: 0 auto;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;width: 760px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: #fff;<br />
}
</p></blockquote>
<p><a href="http://www.gego.info/wp-content/uploads/2006/01/fixed.html">click here for example</a> Here the page never changes its size.<br />
Try and change the size of the browser window.</p>
<h2>fluid</h2>
<blockquote><p><font color="#cc3300"> body</font> {<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background-color: #000;<br />
&nbsp;&nbsp;&nbsp;&nbsp;color: #fff;<br />
}<br />
<font color="#cc3300"> #page</font> {<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin: auto;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;width: 90%;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: #fff;<br />
}
</p></blockquote>
<p><a href="http://www.gego.info/wp-content/uploads/2006/01/fluid.html">click here for example</a> Here the page always changes its size to fit to the resolution or browser window<br />
Try and change the size of the browser window.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gego.info/2006/01/25/css-fluid-vs-fixed-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

