<?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: Creating a Body Border</title>
	<atom:link href="http://css-tricks.com/body-border/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/body-border/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Tue, 18 Jun 2013 20:47:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Sms</title>
		<link>http://css-tricks.com/body-border/#comment-96505</link>
		<dc:creator>Sms</dc:creator>
		<pubDate>Sat, 11 Jun 2011 10:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-96505</guid>
		<description><![CDATA[Really nice tutorial! that really means a lot to me. Such a nice start for beginners. Thank you for taking the time to do all of that!]]></description>
		<content:encoded><![CDATA[<p>Really nice tutorial! that really means a lot to me. Such a nice start for beginners. Thank you for taking the time to do all of that!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DPXradar 001 &#8211; Link Roundup for Online Business Owners</title>
		<link>http://css-tricks.com/body-border/#comment-96258</link>
		<dc:creator>DPXradar 001 &#8211; Link Roundup for Online Business Owners</dc:creator>
		<pubDate>Thu, 09 Jun 2011 00:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-96258</guid>
		<description><![CDATA[[...] border effect form sites like Hicksdesign and kottke.org? Well, Chris Coyier recently rewrote his Creating a Body Border tutorial to show modern techniques.If you&#8217;re an Envato Marketplace author or plan on becoming [...]]]></description>
		<content:encoded><![CDATA[<p>[...] border effect form sites like Hicksdesign and kottke.org? Well, Chris Coyier recently rewrote his Creating a Body Border tutorial to show modern techniques.If you&#8217;re an Envato Marketplace author or plan on becoming [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ItsBuiltForYou</title>
		<link>http://css-tricks.com/body-border/#comment-96176</link>
		<dc:creator>ItsBuiltForYou</dc:creator>
		<pubDate>Wed, 08 Jun 2011 01:47:37 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-96176</guid>
		<description><![CDATA[Yeah well, when your design looks like that!!  But I totally agree that this may be just a tad bit useless =).  Unless someone really really wants those borders!]]></description>
		<content:encoded><![CDATA[<p>Yeah well, when your design looks like that!!  But I totally agree that this may be just a tad bit useless =).  Unless someone really really wants those borders!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: felicja</title>
		<link>http://css-tricks.com/body-border/#comment-96150</link>
		<dc:creator>felicja</dc:creator>
		<pubDate>Tue, 07 Jun 2011 17:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-96150</guid>
		<description><![CDATA[This article shows how to complicate simple things... To solve this problem I wrote in firebug: &lt;code&gt;body {border:10px solid #000}&lt;/code&gt; and &lt;code&gt;&lt;div style=&quot;position: fixed; width: 100%; height: 10px; background: #000; left: 0; bottom: 0&quot;&gt;&lt;/div&gt;&lt;/code&gt;. And it works. I think that the simplest solutions are the best.]]></description>
		<content:encoded><![CDATA[<p>This article shows how to complicate simple things&#8230; To solve this problem I wrote in firebug: <code>body {border:10px solid #000}</code> and <code>&lt;div style="position: fixed; width: 100%; height: 10px; background: #000; left: 0; bottom: 0"&gt;&lt;/div&gt;</code>. And it works. I think that the simplest solutions are the best.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raozuzu</title>
		<link>http://css-tricks.com/body-border/#comment-95839</link>
		<dc:creator>raozuzu</dc:creator>
		<pubDate>Fri, 03 Jun 2011 23:24:57 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-95839</guid>
		<description><![CDATA[Nice article! And what about something like that?
I didn&#039;t test it on Opera, but I think I only need to add the line below if it results broken:
overflow-x: hidden; /* For Opera */

Here the code:

&lt;code&gt;
body:after {
    content:&quot; &quot;;
    display: block;
    position: absolute;
    width: 100%;height: 100%;top:0;
    box-shadow: inset -20px -20px 0 pink,
                inset  20px  20px 0 pink;
    /* z-index: -1; just uncomment this to set this as a part of the background */
    padding: 60px; /* eventual padding, 40px + 20px of the inset box-shadow */
    position: fixed;
 }
&lt;/code&gt;


I usually put this when I want a subtle inset shadox on a repeated texture, but I think it&#039;s also suitable in order to get a body border.

Let me know what do you think about this!
Best regards,
raozuzu :)]]></description>
		<content:encoded><![CDATA[<p>Nice article! And what about something like that?<br />
I didn&#8217;t test it on Opera, but I think I only need to add the line below if it results broken:<br />
overflow-x: hidden; /* For Opera */</p>
<p>Here the code:</p>
<p><code><br />
body:after {<br />
    content:" ";<br />
    display: block;<br />
    position: absolute;<br />
    width: 100%;height: 100%;top:0;<br />
    box-shadow: inset -20px -20px 0 pink,<br />
                inset  20px  20px 0 pink;<br />
    /* z-index: -1; just uncomment this to set this as a part of the background */<br />
    padding: 60px; /* eventual padding, 40px + 20px of the inset box-shadow */<br />
    position: fixed;<br />
 }<br />
</code></p>
<p>I usually put this when I want a subtle inset shadox on a repeated texture, but I think it&#8217;s also suitable in order to get a body border.</p>
<p>Let me know what do you think about this!<br />
Best regards,<br />
raozuzu :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua</title>
		<link>http://css-tricks.com/body-border/#comment-95792</link>
		<dc:creator>Joshua</dc:creator>
		<pubDate>Fri, 03 Jun 2011 09:32:28 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-95792</guid>
		<description><![CDATA[Switching between the kottke.org demo and the actual kottke.org, I noticed some differences in the metrics. The following modifications will replicate the original site pixel for pixel:

&lt;pre&gt;&lt;code&gt;inset #19d4ff 0 0 0 4px,
inset #18cdf7 0 0 0 5px,
inset #53dfff 0 0 0 9px,
inset #50d8f7 0 0 0 10px,
inset #8ce9ff 0 0 0 14px,
inset #88e2f7 0 0 0 15px,
inset #c5f4ff 0 0 0 19px,
inset #bfecf7 0 0 0 20px;&lt;/code&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Switching between the kottke.org demo and the actual kottke.org, I noticed some differences in the metrics. The following modifications will replicate the original site pixel for pixel:</p>
<pre><code>inset #19d4ff 0 0 0 4px,
inset #18cdf7 0 0 0 5px,
inset #53dfff 0 0 0 9px,
inset #50d8f7 0 0 0 10px,
inset #8ce9ff 0 0 0 14px,
inset #88e2f7 0 0 0 15px,
inset #c5f4ff 0 0 0 19px,
inset #bfecf7 0 0 0 20px;</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Remy Bach</title>
		<link>http://css-tricks.com/body-border/#comment-95786</link>
		<dc:creator>Remy Bach</dc:creator>
		<pubDate>Fri, 03 Jun 2011 07:47:40 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-95786</guid>
		<description><![CDATA[I half agree with Brent on that one, with the exception being that I&#039;d give the body a padding of &#039;0 10px&#039; and having two b tags for the left and right.
The only problem I guess would be if the site needs to scroll horizontally, but that&#039;s something that should be avoided anyway.]]></description>
		<content:encoded><![CDATA[<p>I half agree with Brent on that one, with the exception being that I&#8217;d give the body a padding of &#8217;0 10px&#8217; and having two b tags for the left and right.<br />
The only problem I guess would be if the site needs to scroll horizontally, but that&#8217;s something that should be avoided anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Creating a Body Border &#124; Blogs &#8211; NG Outsourcing</title>
		<link>http://css-tricks.com/body-border/#comment-95772</link>
		<dc:creator>Creating a Body Border &#124; Blogs &#8211; NG Outsourcing</dc:creator>
		<pubDate>Fri, 03 Jun 2011 03:29:06 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-95772</guid>
		<description><![CDATA[[...] This article as originally published on February 25, 2008, but is now being completely re-written to... [...]]]></description>
		<content:encoded><![CDATA[<p>[...] This article as originally published on February 25, 2008, but is now being completely re-written to&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Creating a Body Border &#124; Joomla Showcase : CSS Showcase</title>
		<link>http://css-tricks.com/body-border/#comment-95758</link>
		<dc:creator>Creating a Body Border &#124; Joomla Showcase : CSS Showcase</dc:creator>
		<pubDate>Thu, 02 Jun 2011 22:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-95758</guid>
		<description><![CDATA[[...] This article as originally published on February 25, 2008, but is now being completely re-written to... [...]]]></description>
		<content:encoded><![CDATA[<p>[...] This article as originally published on February 25, 2008, but is now being completely re-written to&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stygyan</title>
		<link>http://css-tricks.com/body-border/#comment-95757</link>
		<dc:creator>stygyan</dc:creator>
		<pubDate>Thu, 02 Jun 2011 20:44:16 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/css-trick-creating-a-body-border/#comment-95757</guid>
		<description><![CDATA[It works, certainly it works, but you can&#039;t click on anything, as the new element avoids it. Extra note:  you have to give a value of 0px to left, right, top and bottom.]]></description>
		<content:encoded><![CDATA[<p>It works, certainly it works, but you can&#8217;t click on anything, as the new element avoids it. Extra note:  you have to give a value of 0px to left, right, top and bottom.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-06-18 13:50:21 by W3 Total Cache -->