<?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: My CSS Framework</title>
	<atom:link href="http://www.thatstandardsguy.co.uk/2006/11/my-css-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thatstandardsguy.co.uk/2006/11/my-css-framework/</link>
	<description>a web developer with standards</description>
	<lastBuildDate>Sun, 24 Jan 2010 17:34:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: suz</title>
		<link>http://www.thatstandardsguy.co.uk/2006/11/my-css-framework/comment-page-1/#comment-673</link>
		<dc:creator>suz</dc:creator>
		<pubDate>Wed, 28 Feb 2007 21:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatstandardsguy.co.uk/?p=101#comment-673</guid>
		<description>re: your font-size update, 

shouldn&#039;t you also update the IE5 sheet to include &lt;strong&gt;x-small&lt;/strong&gt; too? -  it&#039;s a quirk but IE5.x displays small as medium</description>
		<content:encoded><![CDATA[<p>re: your font-size update, </p>
<p>shouldn&#8217;t you also update the IE5 sheet to include <strong>x-small</strong> too? &#8211;  it&#8217;s a quirk but IE5.x displays small as medium</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Bishop</title>
		<link>http://www.thatstandardsguy.co.uk/2006/11/my-css-framework/comment-page-1/#comment-667</link>
		<dc:creator>Ben Bishop</dc:creator>
		<pubDate>Sun, 25 Feb 2007 15:21:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatstandardsguy.co.uk/?p=101#comment-667</guid>
		<description>TSG - Thanks for this, it has been a great help. You offer good reasoning and logic behind this framework and It provides an excellent starting point for designing sites that cater for all browsers and their quirks. 

Just a quick question, the print style sheet is listed on the screen.css sheet in its entirety. Is this due to the problems with IE? Does this effect only IE6 and below or also IE7?

Thanks again</description>
		<content:encoded><![CDATA[<p>TSG &#8211; Thanks for this, it has been a great help. You offer good reasoning and logic behind this framework and It provides an excellent starting point for designing sites that cater for all browsers and their quirks. </p>
<p>Just a quick question, the print style sheet is listed on the screen.css sheet in its entirety. Is this due to the problems with IE? Does this effect only IE6 and below or also IE7?</p>
<p>Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Dawson</title>
		<link>http://www.thatstandardsguy.co.uk/2006/11/my-css-framework/comment-page-1/#comment-549</link>
		<dc:creator>Karl Dawson</dc:creator>
		<pubDate>Wed, 13 Dec 2006 20:12:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatstandardsguy.co.uk/?p=101#comment-549</guid>
		<description>Note to self (and reply to Mike): I now know the secret of the 13px default font size so will work that back in (&lt;a href=&quot;http://24ways.org/2006/compose-to-a-vertical-rhythm&quot; rel=&quot;nofollow&quot;&gt;done right it&#039;s still scalable&lt;/a&gt;). I&#039;ll update the post when I do!</description>
		<content:encoded><![CDATA[<p>Note to self (and reply to Mike): I now know the secret of the 13px default font size so will work that back in (<a href="http://24ways.org/2006/compose-to-a-vertical-rhythm" rel="nofollow">done right it&#8217;s still scalable</a>). I&#8217;ll update the post when I do!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Cherim</title>
		<link>http://www.thatstandardsguy.co.uk/2006/11/my-css-framework/comment-page-1/#comment-531</link>
		<dc:creator>Mike Cherim</dc:creator>
		<pubDate>Tue, 28 Nov 2006 05:54:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatstandardsguy.co.uk/?p=101#comment-531</guid>
		<description>You should probably drop the 62.5% font-size, Karl. I have since learned that to some people who set their overriding size on their browser the type can be overwhelmingly large. I was told but a couple of people who read my blog that one can get away with it on this theme and other well-made sites, but in many cases it gets messy.

I have found better, more consistent results with a different start, like so:

&lt;code&gt;
body {
  font-size : 100.1%; /* percent % to avoid IE ems bugs and .1 for older Opera versions */
}
#wrapper {
  font-size : 0.9em; /* then scale it down to a size you like */
}
&lt;/code&gt;

This was news to me when I learned this but is now a standard practice for me. The results are a lot more consistent.

---Mike</description>
		<content:encoded><![CDATA[<p>You should probably drop the 62.5% font-size, Karl. I have since learned that to some people who set their overriding size on their browser the type can be overwhelmingly large. I was told but a couple of people who read my blog that one can get away with it on this theme and other well-made sites, but in many cases it gets messy.</p>
<p>I have found better, more consistent results with a different start, like so:</p>
<p><code><br />
body {<br />
  font-size : 100.1%; /* percent % to avoid IE ems bugs and .1 for older Opera versions */<br />
}<br />
#wrapper {<br />
  font-size : 0.9em; /* then scale it down to a size you like */<br />
}<br />
</code></p>
<p>This was news to me when I learned this but is now a standard practice for me. The results are a lot more consistent.</p>
<p>&#8212;Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ozbon</title>
		<link>http://www.thatstandardsguy.co.uk/2006/11/my-css-framework/comment-page-1/#comment-527</link>
		<dc:creator>Ozbon</dc:creator>
		<pubDate>Fri, 24 Nov 2006 11:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.thatstandardsguy.co.uk/?p=101#comment-527</guid>
		<description>I found most of what you said pretty interesting.

One other way I&#039;ve found of getting round the entire &quot;only loading one file&quot; (as well as a bundle of other stuff) was dynamic stylesheets.

Basically, if you can set your webserver to parse CSS files through the PHP or ASP engines then your &#039;css&#039; file could actually just be a bunch of PHP/ASP includes, which would then output as one file.

Using this (and using a PHP Header or ASP Response.Header to still send it back out as a css file MIME type etc.) you can do a lot of very funky stuff with dynamic colourschemes etc. too.</description>
		<content:encoded><![CDATA[<p>I found most of what you said pretty interesting.</p>
<p>One other way I&#8217;ve found of getting round the entire &#8220;only loading one file&#8221; (as well as a bundle of other stuff) was dynamic stylesheets.</p>
<p>Basically, if you can set your webserver to parse CSS files through the PHP or ASP engines then your &#8216;css&#8217; file could actually just be a bunch of PHP/ASP includes, which would then output as one file.</p>
<p>Using this (and using a PHP Header or ASP Response.Header to still send it back out as a css file MIME type etc.) you can do a lot of very funky stuff with dynamic colourschemes etc. too.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
