<?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/"
		>
<channel>
	<title>Comments on: Centering a Page with&#160;CSS</title>
	<atom:link href="http://almosteffortless.com/2006/08/14/centering-a-page-with-css/feed/" rel="self" type="application/rss+xml" />
	<link>http://almosteffortless.com/2006/08/14/centering-a-page-with-css/</link>
	<description></description>
	<lastBuildDate>Wed, 10 Mar 2010 01:15:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Trevor</title>
		<link>http://almosteffortless.com/2006/08/14/centering-a-page-with-css/comment-page-1/#comment-22656</link>
		<dc:creator>Trevor</dc:creator>
		<pubDate>Mon, 04 Sep 2006 23:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.almosteffortless.com/2006/08/14/centering-a-page-with-css/#comment-22656</guid>
		<description>ollyss, try this page out: http://www.w3schools.com/css/default.asp</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://almosteffortless.com/2006/08/14/centering-a-page-with-css/comment-page-1/#comment-22652</link>
		<dc:creator>ollyss</dc:creator>
		<pubDate>Mon, 04 Sep 2006 14:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.almosteffortless.com/2006/08/14/centering-a-page-with-css/#comment-22652</guid>
		<description>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&#8217;t understand how to implement the codes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brett Terpstra</title>
		<link>http://almosteffortless.com/2006/08/14/centering-a-page-with-css/comment-page-1/#comment-22626</link>
		<dc:creator>Brett Terpstra</dc:creator>
		<pubDate>Fri, 01 Sep 2006 13:14:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.almosteffortless.com/2006/08/14/centering-a-page-with-css/#comment-22626</guid>
		<description>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 &#8220;text-align: center;&#8221; 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://almosteffortless.com/2006/08/14/centering-a-page-with-css/comment-page-1/#comment-22593</link>
		<dc:creator>Sergio Pinna</dc:creator>
		<pubDate>Thu, 24 Aug 2006 01:05:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.almosteffortless.com/2006/08/14/centering-a-page-with-css/#comment-22593</guid>
		<description>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<br />
<code>body {<br />
margin: 0px auto;<br />
width: 760px;<br />
}</code></p>
<p>it&#8217;s not good. Try thees solutions:</p>
<p><b>layout with &#8220;pixel&#8221;</b></p>
<p><code><br />
body{<br />
margin:0;<br />
padding:0;<br />
text-align:center; /* IE5.x/Win fix */<br />
}<br />
auxiliary{<br />
width: 760px; /* summary of all width, padding border, margin of what is in itself */<br />
margin-left:auto;<br />
margin-right:auto;<br />
text-align:left ; /* IE5.x/Win fix: it restores the corrected alignment  */<br />
}</p>
<p><b>layout with "fluid"</b></p>
<p></code><code><br />
body{<br />
margin:0;<br />
padding:0 10%;<br />
}<br />
</code></p>
<p>Well, i thin that, the second Css is easer than first.</p>
<p>Bye.</p>
<p>P.S.I'm sorry for my english :-P</p>
]]></content:encoded>
	</item>
</channel>
</rss>
