<?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: Recommended XHTML and CSS Practices</title>
	<atom:link href="http://varunkrish.com/css-best-practices.html/feed" rel="self" type="application/rss+xml" />
	<link>http://varunkrish.com/css-best-practices.html</link>
	<description>Web Technologist Blog</description>
	<lastBuildDate>Mon, 26 Apr 2010 20:13:02 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Soft Review &#187; Recommended XHTML and CSS Practices</title>
		<link>http://varunkrish.com/css-best-practices.html/comment-page-1#comment-10367</link>
		<dc:creator>Soft Review &#187; Recommended XHTML and CSS Practices</dc:creator>
		<pubDate>Thu, 22 Nov 2007 17:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://varunkrish.com/css-best-practices.html#comment-10367</guid>
		<description>[...] read more &#124; digg story [...]</description>
		<content:encoded><![CDATA[<p>[...] read more | digg story [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: varun krishnan</title>
		<link>http://varunkrish.com/css-best-practices.html/comment-page-1#comment-6745</link>
		<dc:creator>varun krishnan</dc:creator>
		<pubDate>Tue, 05 Jun 2007 05:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://varunkrish.com/css-best-practices.html#comment-6745</guid>
		<description>@skeller 

awesome suggestion.. Gives me 1 more reason to eliminate tables.Thanks for reminding.</description>
		<content:encoded><![CDATA[<p>@skeller </p>
<p>awesome suggestion.. Gives me 1 more reason to eliminate tables.Thanks for reminding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: varun krishnan</title>
		<link>http://varunkrish.com/css-best-practices.html/comment-page-1#comment-6744</link>
		<dc:creator>varun krishnan</dc:creator>
		<pubDate>Tue, 05 Jun 2007 05:33:10 +0000</pubDate>
		<guid isPermaLink="false">http://varunkrish.com/css-best-practices.html#comment-6744</guid>
		<description>@Andy

thanks for the feedback

yes.. it can be further simplified.. My idea was to eliminate the importance of dropping unnecessary markup.</description>
		<content:encoded><![CDATA[<p>@Andy</p>
<p>thanks for the feedback</p>
<p>yes.. it can be further simplified.. My idea was to eliminate the importance of dropping unnecessary markup.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: skeller</title>
		<link>http://varunkrish.com/css-best-practices.html/comment-page-1#comment-6743</link>
		<dc:creator>skeller</dc:creator>
		<pubDate>Tue, 05 Jun 2007 04:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://varunkrish.com/css-best-practices.html#comment-6743</guid>
		<description>an even better solution, set a width on the ul to be like 600px and make each li say 200px and float them left, of course you have to clear the ul..


  
    col1
    col2
    col3
    1
    varun
    varunkrish.com
    2
    google
    google.com
  
</description>
		<content:encoded><![CDATA[<p>an even better solution, set a width on the ul to be like 600px and make each li say 200px and float them left, of course you have to clear the ul..</p>
<p>    col1<br />
    col2<br />
    col3<br />
    1<br />
    varun<br />
    varunkrish.com<br />
    2<br />
    google<br />
    google.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Ford</title>
		<link>http://varunkrish.com/css-best-practices.html/comment-page-1#comment-6692</link>
		<dc:creator>Andy Ford</dc:creator>
		<pubDate>Thu, 31 May 2007 16:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://varunkrish.com/css-best-practices.html#comment-6692</guid>
		<description>varun,
Thanks for this post. The more that people discuss this, and writing about it on the web - the better.

I think your first example could be minimized a bit more (might depend on the situation).  Assuming that div#header only contains the following content:

[div id=&quot;header&quot;]
[h2]Site Name[/h2]
[span class=&quot;tagline&quot;]tagline[/span]
[/div]

You could further reduce the tagline like so:

[em]tagline[/em]
or
[p]tagline[/p]
or another element such as strong, b, etc

then your css rule might look like:
#header em{/*whatever*/}

Actually, you might even be able to get away with no element wrapping the tagline at all by applying the styles just to #header and #header h2... but you&#039;d have to be careful about the h2 inheriting unwanted styles.</description>
		<content:encoded><![CDATA[<p>varun,<br />
Thanks for this post. The more that people discuss this, and writing about it on the web &#8211; the better.</p>
<p>I think your first example could be minimized a bit more (might depend on the situation).  Assuming that div#header only contains the following content:</p>
<p>[div id="header"]<br />
[h2]Site Name[/h2]<br />
[span class="tagline"]tagline[/span]<br />
[/div]</p>
<p>You could further reduce the tagline like so:</p>
<p>[em]tagline[/em]<br />
or<br />
[p]tagline[/p]<br />
or another element such as strong, b, etc</p>
<p>then your <acronym title="Cascading Style Sheets">CSS</acronym> rule might look like:<br />
#header em{/*whatever*/}</p>
<p>Actually, you might even be able to get away with no element wrapping the tagline at all by applying the styles just to #header and #header h2&#8230; but you&#8217;d have to be careful about the h2 inheriting unwanted styles.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
