<?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: Global White Space Reset</title>
	<atom:link href="http://leftjustified.net/journal/2004/10/19/global-ws-reset/feed/" rel="self" type="application/rss+xml" />
	<link>http://leftjustified.net/journal/2004/10/19/global-ws-reset/</link>
	<description>In a few words, explain what this weblog is about.</description>
	<lastBuildDate>Wed, 11 Feb 2009 06:59:21 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 3e6.com</title>
		<link>http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1997</link>
		<dc:creator>3e6.com</dc:creator>
		<pubDate>Tue, 03 May 2005 12:22:53 +0000</pubDate>
		<guid isPermaLink="false">http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1997</guid>
		<description>This tip is useful beyond words. My head started to ache when considering the many hours I&#8217;ve spent wrangling the magical mixture of margin and padding across browsers. Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>This tip is useful beyond words. My head started to ache when considering the many hours I&#8217;ve spent wrangling the magical mixture of margin and padding across browsers. Thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1453</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 17 Mar 2005 21:54:39 +0000</pubDate>
		<guid isPermaLink="false">http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1453</guid>
		<description>&lt;a href=&quot;#comment-1452&quot;&gt;Mark&lt;/a&gt;: The reason for this choice is that using &#039;%&#039; for horizontal spacing creates variable width &#039;gutters&#039; that adjust to suit the browser width, while using &#039;em&#039; for vertical spacing ensures the font-size, line-height and vertical padding/margins all increase proportionately to each other.</description>
		<content:encoded><![CDATA[<p><a href="#comment-1452">Mark</a>: The reason for this choice is that using &#8216;%&#8217; for horizontal spacing creates variable width &#8216;gutters&#8217; that adjust to suit the browser width, while using &#8216;em&#8217; for vertical spacing ensures the font-size, line-height and vertical padding/margins all increase proportionately to each other.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Pearson</title>
		<link>http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1452</link>
		<dc:creator>Mark Pearson</dc:creator>
		<pubDate>Thu, 17 Mar 2005 20:46:13 +0000</pubDate>
		<guid isPermaLink="false">http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1452</guid>
		<description>&lt;pre&gt;
   1. * {
   2. padding:0;
   3. margin:0;
   4. }
   5. h1, h2, h3, h4, h5, h6, p,
 pre, blockquote, label, ul, ol, 
dl, fieldset, address { margin:1em 5%; }
   6. li, dd { margin-left:5%; }
   7. fieldset { padding: .5em; }

&lt;i&gt;...whereby all side margins are
 controlled by browser width and
 all vertical spacing is 
controlled by font size.&lt;/i&gt;
&lt;/pre&gt;
&lt;p&gt;So, my question is, why have some units in em and others in % and why use em for vertical spacing and % for horizontal?&lt;/p&gt;
&lt;p&gt;This also illustrates the importance of understanding the theory of CSS&lt;/p&gt;</description>
		<content:encoded><![CDATA[<pre>
   1. * {
   2. padding:0;
   3. margin:0;
   4. }
   5. h1, h2, h3, h4, h5, h6, p,
 pre, blockquote, label, ul, ol,
dl, fieldset, address { margin:1em 5%; }
   6. li, dd { margin-left:5%; }
   7. fieldset { padding: .5em; }

<i>...whereby all side margins are
 controlled by browser width and
 all vertical spacing is
controlled by font size.</i>
</pre>
<p>So, my question is, why have some units in em and others in % and why use em for vertical spacing and % for horizontal?</p>
<p>This also illustrates the importance of understanding the theory of CSS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Odding</title>
		<link>http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1444</link>
		<dc:creator>Peter Odding</dc:creator>
		<pubDate>Wed, 16 Mar 2005 14:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1444</guid>
		<description>&#8220;By removing this &#8220;mystery&#8221; dimension from the size of elements, it could help people to become accustomed to styling semantic HTML.&#8221;

I guess that doesn&#039;t count me in.

I&#039;ve been creating/using CSS layouts for over two years, and the first thing I do when I want complete control of my layout is set all margins and paddings to zero.

I&#039;ve also created a common stylesheet that I import to reset these margins / paddings and then apply some general whitespace, e.g:

table, ol, ul, dl, p, pre { margin-bottom: 1em; }
ol, ul { margin-left: 1em; }

etc...

I&#039;d absolutely recommend this technique to anyone who wants complete control!</description>
		<content:encoded><![CDATA[<p>&#8220;By removing this &#8220;mystery&#8221; dimension from the size of elements, it could help people to become accustomed to styling semantic HTML.&#8221;</p>
<p>I guess that doesn&#8217;t count me in.</p>
<p>I&#8217;ve been creating/using CSS layouts for over two years, and the first thing I do when I want complete control of my layout is set all margins and paddings to zero.</p>
<p>I&#8217;ve also created a common stylesheet that I import to reset these margins / paddings and then apply some general whitespace, e.g:</p>
<p>table, ol, ul, dl, p, pre { margin-bottom: 1em; }<br />
ol, ul { margin-left: 1em; }</p>
<p>etc&#8230;</p>
<p>I&#8217;d absolutely recommend this technique to anyone who wants complete control!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivan</title>
		<link>http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1385</link>
		<dc:creator>Ivan</dc:creator>
		<pubDate>Wed, 16 Mar 2005 11:42:42 +0000</pubDate>
		<guid isPermaLink="false">http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1385</guid>
		<description>Hey, great thoughts everyone! But aren&#039;t we left out the &lt;strong&gt;select optgroup&lt;/strong&gt; and &lt;strong&gt;select option&lt;/strong&gt;? Here&#039;s my suggestion:

&lt;pre&gt;
select {
    min-width: 1.5em;
}

select optgroup {
    margin-left: 2%;
}

select optgroup option {
    margin-left: 10%;
}
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Hey, great thoughts everyone! But aren&#8217;t we left out the <strong>select optgroup</strong> and <strong>select option</strong>? Here&#8217;s my suggestion:</p>
<pre>
select {
    min-width: 1.5em;
}

select optgroup {
    margin-left: 2%;
}

select optgroup option {
    margin-left: 10%;
}
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tzvetelin N.</title>
		<link>http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1187</link>
		<dc:creator>Tzvetelin N.</dc:creator>
		<pubDate>Tue, 08 Mar 2005 17:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://leftjustified.net/journal/2004/10/19/global-ws-reset/#comment-1187</guid>
		<description>yo!</description>
		<content:encoded><![CDATA[<p>yo!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
