<?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: Improving Your Process: CSS Techniques Part 1</title>
	<atom:link href="http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/feed/" rel="self" type="application/rss+xml" />
	<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/</link>
	<description>A resource for Web designers and developers to read about and discuss their craft.</description>
	<lastBuildDate>Wed, 28 Jul 2010 19:29:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Fear not. I Have Conquered IE6, and You Can Too - Monday By Noon</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-4753</link>
		<dc:creator>Fear not. I Have Conquered IE6, and You Can Too - Monday By Noon</dc:creator>
		<pubDate>Mon, 12 Jan 2009 06:52:11 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-4753</guid>
		<description>[...] I&#8217;ve said before, something I always keep in mind is to avoid box model inconsistencies. Find a way to prevent [...]</description>
		<content:encoded><![CDATA[<p>[...] I&#8217;ve said before, something I always keep in mind is to avoid box model inconsistencies. Find a way to prevent [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Improving Your Process: CSS Techniques Part 2 - Monday By Noon</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1200</link>
		<dc:creator>Improving Your Process: CSS Techniques Part 2 - Monday By Noon</dc:creator>
		<pubDate>Mon, 14 Jan 2008 15:04:22 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1200</guid>
		<description>[...] a year ago, I jotted down a few CSS techniques that I use day to day. Some tips included controlling browser defaults, avoiding box model headaches, [...]</description>
		<content:encoded><![CDATA[<p>[...] a year ago, I jotted down a few CSS techniques that I use day to day. Some tips included controlling browser defaults, avoiding box model headaches, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul - Design Mancester</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1199</link>
		<dc:creator>Paul - Design Mancester</dc:creator>
		<pubDate>Sun, 06 Jan 2008 17:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1199</guid>
		<description>Johnathan, I like the header comments like this:
/*
Theme Name:
Theme URI:
Description:
Version:
Author:
Author URI:
*/

I agree with you that it is better to avoid IE bugs than use hacks.</description>
		<content:encoded><![CDATA[<p>Johnathan, I like the header comments like this:<br />
/*<br />
Theme Name:<br />
Theme URI:<br />
Description:<br />
Version:<br />
Author:<br />
Author URI:<br />
*/</p>
<p>I agree with you that it is better to avoid IE bugs than use hacks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonathan Christopher</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1198</link>
		<dc:creator>Jonathan Christopher</dc:creator>
		<pubDate>Fri, 04 Jan 2008 15:33:52 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1198</guid>
		<description>@Paul - Design Mancester: There are a number of ways I&#039;ve seen people comment their CSS. At the end of the day it comes down to what&#039;s most useful to you.

One thing I&#039;ve seen from time to time is using a specific syntax (that you&#039;ve come up with yourself) for finding particular areas of your stylesheet, i.e.:

&lt;code&gt;/* !footer */&lt;/code&gt;

That way, after using your own namespaces, you&#039;re able to use the exclamation point as a bit of a flag for the top of a section in your CSS. You could use various characters to outline various sections of CSS based on your needs.

Other types of commenting that I&#039;ve used include blatant attention-getting, such as:

&lt;code&gt;/* --------------------------------------------------------

		SIDEBAR

-------------------------------------------------------- */&lt;/code&gt;

Using comments such as these can help you to section your CSS to easily find a particular area when scrolling through the stylesheet.

Sometimes, it&#039;s helpful to include some notes as reminders, especially if you &lt;a href=&quot;http://mondaybynoon.com/2006/05/15/i-vote-conditional-comments/&quot; rel=&quot;nofollow&quot;&gt;use conditional comments&lt;/a&gt;. It can help to jot down a note reminding you that this particular element has ties with another IE-specific stylesheet.

I hope you find these notes helpful, but please be sure to inquire if you have any further questions, or if I&#039;ve interpreted your request incorrectly. Thanks for taking the time to comment!</description>
		<content:encoded><![CDATA[<p>@Paul &#8211; Design Mancester: There are a number of ways I&#8217;ve seen people comment their CSS. At the end of the day it comes down to what&#8217;s most useful to you.</p>
<p>One thing I&#8217;ve seen from time to time is using a specific syntax (that you&#8217;ve come up with yourself) for finding particular areas of your stylesheet, i.e.:</p>
<p><code>/* !footer */</code></p>
<p>That way, after using your own namespaces, you&#8217;re able to use the exclamation point as a bit of a flag for the top of a section in your CSS. You could use various characters to outline various sections of CSS based on your needs.</p>
<p>Other types of commenting that I&#8217;ve used include blatant attention-getting, such as:</p>
<p><code>/* --------------------------------------------------------</p>
<p>		SIDEBAR</p>
<p>-------------------------------------------------------- */</code></p>
<p>Using comments such as these can help you to section your CSS to easily find a particular area when scrolling through the stylesheet.</p>
<p>Sometimes, it&#8217;s helpful to include some notes as reminders, especially if you <a href="http://mondaybynoon.com/2006/05/15/i-vote-conditional-comments/" rel="nofollow">use conditional comments</a>. It can help to jot down a note reminding you that this particular element has ties with another IE-specific stylesheet.</p>
<p>I hope you find these notes helpful, but please be sure to inquire if you have any further questions, or if I&#8217;ve interpreted your request incorrectly. Thanks for taking the time to comment!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul - Design Mancester</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1197</link>
		<dc:creator>Paul - Design Mancester</dc:creator>
		<pubDate>Fri, 04 Jan 2008 13:18:04 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1197</guid>
		<description>Jon, it would be good if you add a few examples of comments. I keep improving them in my CSS files and I would like to find how others deal with this issue.</description>
		<content:encoded><![CDATA[<p>Jon, it would be good if you add a few examples of comments. I keep improving them in my CSS files and I would like to find how others deal with this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Year in Review: Highlights from 2007 - Monday By Noon</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1196</link>
		<dc:creator>Year in Review: Highlights from 2007 - Monday By Noon</dc:creator>
		<pubDate>Mon, 24 Dec 2007 15:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1196</guid>
		<description>[...] Improving Your Process: CSS Techniques Part 1 [...]</description>
		<content:encoded><![CDATA[<p>[...] Improving Your Process: CSS Techniques Part 1 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A Semantic Breakdown of Restaurant Menus - Monday By Noon</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1195</link>
		<dc:creator>A Semantic Breakdown of Restaurant Menus - Monday By Noon</dc:creator>
		<pubDate>Mon, 14 May 2007 12:14:35 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1195</guid>
		<description>[...] the word about POSH in starting a sporadic series of articles on the subject, much like the &#8216;Improving your Process&#8216; series. In the articles I&#8217;ll take a real world example that will hopefully be found [...]</description>
		<content:encoded><![CDATA[<p>[...] the word about POSH in starting a sporadic series of articles on the subject, much like the &#8216;Improving your Process&#8216; series. In the articles I&#8217;ll take a real world example that will hopefully be found [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RobotZoo &#187; Blog Archive &#187; Improving Your Process: CSS Techniques Part 1</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1194</link>
		<dc:creator>RobotZoo &#187; Blog Archive &#187; Improving Your Process: CSS Techniques Part 1</dc:creator>
		<pubDate>Fri, 23 Mar 2007 21:58:57 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1194</guid>
		<description>[...] More&#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] More&#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1192</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sat, 10 Mar 2007 15:16:29 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1192</guid>
		<description>@Brian: I could never work productively when splitting my CSS into separate files for typography, layout, colors, etc.  It just didn&#039;t make sense to me.  To change the appearance of a single element, it&#039;s very likely you&#039;ll have to open up two (or three!) files just to make the change.</description>
		<content:encoded><![CDATA[<p>@Brian: I could never work productively when splitting my CSS into separate files for typography, layout, colors, etc.  It just didn&#8217;t make sense to me.  To change the appearance of a single element, it&#8217;s very likely you&#8217;ll have to open up two (or three!) files just to make the change.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1193</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Thu, 08 Mar 2007 18:58:38 +0000</pubDate>
		<guid isPermaLink="false">http://mondaybynoon.com/2007/02/26/improving-your-process-css-techniques-part-1/#comment-1193</guid>
		<description>I tried splitting up my CSS files into layout/typography/colors/etc., but I found it too time consuming to be flipping back and forth between files as I coded. I prefer to keep everything in one well-commented file. Love the color glossary idea--I&#039;m going to use that from now on.</description>
		<content:encoded><![CDATA[<p>I tried splitting up my CSS files into layout/typography/colors/etc., but I found it too time consuming to be flipping back and forth between files as I coded. I prefer to keep everything in one well-commented file. Love the color glossary idea&#8211;I&#8217;m going to use that from now on.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using xcache (user agent is rejected)
Database Caching using xcache

Served from: mondaybynoon.com @ 2010-07-30 22:14:28 -->