<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Centering a Page with CSS</title>
	<atom:link href="http://trevorturk.wordpress.com/2006/08/14/centering-a-page-with-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://trevorturk.wordpress.com/2006/08/14/centering-a-page-with-css/</link>
	<description>A chess-playing machine of the late 18th century, promoted as an automaton but later proved a hoax.</description>
	<lastBuildDate>Wed, 08 Feb 2012 17:13:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Trevor</title>
		<link>http://trevorturk.wordpress.com/2006/08/14/centering-a-page-with-css/#comment-482</link>
		<dc:creator><![CDATA[Trevor]]></dc:creator>
		<pubDate>Mon, 04 Sep 2006 16:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.almosteffortless.com/2006/08/14/centering-a-page-with-css/#comment-482</guid>
		<description><![CDATA[ollyss, try this page out: &lt;a href=&quot;http://www.w3schools.com/css/default.asp&quot; rel=&quot;nofollow&quot;&gt;http://www.w3schools.com/css/default.asp&lt;/a&gt; ]]></description>
		<content:encoded><![CDATA[<p>ollyss, try this page out: <a href="http://www.w3schools.com/css/default.asp" rel="nofollow">http://www.w3schools.com/css/default.asp</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ollyss</title>
		<link>http://trevorturk.wordpress.com/2006/08/14/centering-a-page-with-css/#comment-481</link>
		<dc:creator><![CDATA[ollyss]]></dc:creator>
		<pubDate>Mon, 04 Sep 2006 07:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.almosteffortless.com/2006/08/14/centering-a-page-with-css/#comment-481</guid>
		<description><![CDATA[as new to web design I can&#039;t understand how to implement the codes. ]]></description>
		<content:encoded><![CDATA[<p>as new to web design I can&#039;t understand how to implement the codes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett Terpstra</title>
		<link>http://trevorturk.wordpress.com/2006/08/14/centering-a-page-with-css/#comment-480</link>
		<dc:creator><![CDATA[Brett Terpstra]]></dc:creator>
		<pubDate>Fri, 01 Sep 2006 06:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.almosteffortless.com/2006/08/14/centering-a-page-with-css/#comment-480</guid>
		<description><![CDATA[The two CSS solutions can be used for different situations.  You may not want to set your body width narrower than the full width of the browser depending on your layout, in which case you would want a container element centered within the body.  The &quot;text-align: center;&quot; IE Win fix in the body tag is also a wise move.  Both solutions will work, depending on your needs, but the second, in my experience, is more flexible and cross-browser. ]]></description>
		<content:encoded><![CDATA[<p>The two CSS solutions can be used for different situations.  You may not want to set your body width narrower than the full width of the browser depending on your layout, in which case you would want a container element centered within the body.  The &quot;text-align: center;&quot; IE Win fix in the body tag is also a wise move.  Both solutions will work, depending on your needs, but the second, in my experience, is more flexible and cross-browser.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergio Pinna</title>
		<link>http://trevorturk.wordpress.com/2006/08/14/centering-a-page-with-css/#comment-479</link>
		<dc:creator><![CDATA[Sergio Pinna]]></dc:creator>
		<pubDate>Wed, 23 Aug 2006 18:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.almosteffortless.com/2006/08/14/centering-a-page-with-css/#comment-479</guid>
		<description><![CDATA[Well,
 

 
i think that
 
&lt;code&gt;body {
 
margin: 0px auto;
 
width: 760px;
 
}&lt;/code&gt;
 

 
it&#039;s not good. Try thees solutions:
 

 
&lt;b&gt;layout with &quot;pixel&quot;&lt;/b&gt;
 

 
&lt;code&gt;
 
body{
 
margin:0;
 
padding:0;
 
text-align:center; /* IE5.x/Win fix */
 
}
 
auxiliary{
 
width: 760px; /* summary of all width, padding border, margin of what is in itself */
 
margin-left:auto;
 
margin-right:auto;
 
text-align:left ; /* IE5.x/Win fix: it restores the corrected alignment  */
 
}
 

 
&lt;b&gt;layout with &quot;fluid&quot;&lt;/b&gt;
 

 
&lt;code&gt;
 
body{
 
margin:0;
 
padding:0 10%;
 
}
 
&lt;/code&gt;
 

 
Well, i thin that, the second Css is easer than first.
 

 
Bye.
 

 

 
P.S.I&#039;m sorry for my english :-P ]]></description>
		<content:encoded><![CDATA[<p>Well,</p>
<p>i think that</p>
<p>&lt;code&gt;body {</p>
<p>margin: 0px auto;</p>
<p>width: 760px;</p>
<p>}&lt;/code&gt;</p>
<p>it&#039;s not good. Try thees solutions:</p>
<p><b>layout with &quot;pixel&quot;</b></p>
<p>&lt;code&gt;</p>
<p>body{</p>
<p>margin:0;</p>
<p>padding:0;</p>
<p>text-align:center; /* IE5.x/Win fix */</p>
<p>}</p>
<p>auxiliary{</p>
<p>width: 760px; /* summary of all width, padding border, margin of what is in itself */</p>
<p>margin-left:auto;</p>
<p>margin-right:auto;</p>
<p>text-align:left ; /* IE5.x/Win fix: it restores the corrected alignment  */</p>
<p>}</p>
<p><b>layout with &quot;fluid&quot;</b></p>
<p>&lt;code&gt;</p>
<p>body{</p>
<p>margin:0;</p>
<p>padding:0 10%;</p>
<p>}</p>
<p>&lt;/code&gt;</p>
<p>Well, i thin that, the second Css is easer than first.</p>
<p>Bye.</p>
<p>P.S.I&#039;m sorry for my english <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

