<?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: Reset 2.0b2: Paring Down</title>
	<atom:link href="http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/feed/" rel="self" type="application/rss+xml" />
	<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/</link>
	<description>Things that Eric A. Meyer, CSS expert, writes about on his personal Web site; it&#039;s largely Web standards and Web technology, but also various bits of culture, politics, personal observations, and other miscellaneous stuff</description>
	<lastBuildDate>Fri, 10 May 2013 11:50:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-531838</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Thu, 27 Jan 2011 02:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-531838</guid>
		<description><![CDATA[&lt;a href=&quot;http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-531814&quot; rel=&quot;nofollow&quot;&gt;Eli&lt;/a&gt;, it&#039;s my position that the dynamic generation of quotes is (to use your terminology) harmful, and so I reset them.  Since you disagree, you&#039;re perfectly free to remove those lines from your copy of the reset.  As I&#039;ve said many, many times, the reset is not meant to be used without alteration.  It&#039;s meant as a starting point.

I disallow &lt;code&gt;pre&lt;/code&gt; in comments because of the potential for abuse, though perhaps I should loosen up on that; in the meantime, I&#039;ve edited your comment as I believe you originally intended to mark it up.  As for the rest of your comments on my stylistic choices, they&#039;re my choices and I&#039;m satisfied with them.]]></description>
		<content:encoded><![CDATA[<p><a href="http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-531814" rel="nofollow">Eli</a>, it&#8217;s my position that the dynamic generation of quotes is (to use your terminology) harmful, and so I reset them.  Since you disagree, you&#8217;re perfectly free to remove those lines from your copy of the reset.  As I&#8217;ve said many, many times, the reset is not meant to be used without alteration.  It&#8217;s meant as a starting point.</p>
<p>I disallow <code>pre</code> in comments because of the potential for abuse, though perhaps I should loosen up on that; in the meantime, I&#8217;ve edited your comment as I believe you originally intended to mark it up.  As for the rest of your comments on my stylistic choices, they&#8217;re my choices and I&#8217;m satisfied with them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli Grey</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-531814</link>
		<dc:creator>Eli Grey</dc:creator>
		<pubDate>Thu, 27 Jan 2011 01:12:22 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-531814</guid>
		<description><![CDATA[&lt;pre&gt;&lt;code&gt;blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: &#039;&#039;;
    content: none;
}
&lt;/code&gt;&lt;/pre&gt;

Why would anyone ever want to reset inline quotes just so they have to define them all over again? With this CSS reset, you&#039;ll need hundreds of lines of CSS to restore inline quotes functionality back to it&#039;s former state (for example, &lt;a href=&quot;http://en.wikipedia.org/wiki/Non-English_usage_of_quotation_marks&quot; rel=&quot;nofollow&quot;&gt;http://en.wikipedia.org/wiki/Non-English_usage_of_quotation_marks&lt;/a&gt;). To put this in perspective, the following code &lt;em&gt;only&lt;/em&gt; fixes the functionality for English, French, Spanish, and Japanese.

&lt;pre&gt;&lt;code&gt;q::before {
    content: open-quote;
}
q::after  {
    content: close-quote;
}
q:lang(en) {
    quotes: &quot;“&quot; &quot;”&quot; &quot;‘&quot; &quot;’&quot;;
}
q:lang(fr) {
    quotes: &quot;«&quot; &quot;»&quot;;
}
q:lang(fr) {
    quotes: &quot;«&quot; &quot;»&quot;;
}
q:lang(es) {
    quotes: &quot;«&quot; &quot;»&quot; &quot;“&quot; &quot;”&quot;;
}
q:lang(jp) {
    quotes: &quot;「&quot; &quot;」&quot; &quot;『&quot; &quot;』&quot;;
}
&lt;/code&gt;&lt;/pre&gt;

Your quotes reset is extremely harmful, and you should remove it.

P.S. It&#039;s nice that you allow &lt;code&gt; tags in comments, but you&#039;re completely forgetting about &lt;em&gt;&lt;pre&gt;&lt;/em&gt; tags. It really screws up this comment. Also, what&#039;s up with your &lt;code&gt;#main blockquote p { text-indent: 2em; }&lt;/code&gt; CSS rule? You don&#039;t indent &lt;code&gt;p&lt;/code&gt; elements, so you shouldn&#039;t be indenting &lt;code&gt;blockquote&lt;/code&gt; elements either. Not to mention that there&#039;s nothing that says &lt;code&gt;blockquote&lt;/code&gt;s might have content in them that isn&#039;t appropriate to indent.]]></description>
		<content:encoded><![CDATA[<pre><code>blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
</code></pre>
<p>Why would anyone ever want to reset inline quotes just so they have to define them all over again? With this CSS reset, you&#8217;ll need hundreds of lines of CSS to restore inline quotes functionality back to it&#8217;s former state (for example, <a href="http://en.wikipedia.org/wiki/Non-English_usage_of_quotation_marks" rel="nofollow">http://en.wikipedia.org/wiki/Non-English_usage_of_quotation_marks</a>). To put this in perspective, the following code <em>only</em> fixes the functionality for English, French, Spanish, and Japanese.</p>
<pre><code>q::before {
    content: open-quote;
}
q::after  {
    content: close-quote;
}
q:lang(en) {
    quotes: "“" "”" "‘" "’";
}
q:lang(fr) {
    quotes: "«" "»";
}
q:lang(fr) {
    quotes: "«" "»";
}
q:lang(es) {
    quotes: "«" "»" "“" "”";
}
q:lang(jp) {
    quotes: "「" "」" "『" "』";
}
</code></pre>
<p>Your quotes reset is extremely harmful, and you should remove it.</p>
<p>P.S. It&#8217;s nice that you allow &lt;code&gt; tags in comments, but you&#8217;re completely forgetting about <em>&lt;pre&gt;</em> tags. It really screws up this comment. Also, what&#8217;s up with your <code>#main blockquote p { text-indent: 2em; }</code> CSS rule? You don&#8217;t indent <code>p</code> elements, so you shouldn&#8217;t be indenting <code>blockquote</code> elements either. Not to mention that there&#8217;s nothing that says <code>blockquote</code>s might have content in them that isn&#8217;t appropriate to indent.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Bigelajzen</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-531088</link>
		<dc:creator>Tom Bigelajzen</dc:creator>
		<pubDate>Mon, 24 Jan 2011 21:42:35 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-531088</guid>
		<description><![CDATA[I like this trimmed down version, though instead of completely removing these elements it would be nice to see a set of what you consider as optional baseline rules.]]></description>
		<content:encoded><![CDATA[<p>I like this trimmed down version, though instead of completely removing these elements it would be nice to see a set of what you consider as optional baseline rules.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thierry Koblentz</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-529427</link>
		<dc:creator>Thierry Koblentz</dc:creator>
		<pubDate>Wed, 19 Jan 2011 21:10:59 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-529427</guid>
		<description><![CDATA[What about adding:

&lt;code&gt;
button {
  font:inherit;
  text-transform:inherit;
}&lt;/code&gt;

It may not be a reset per se, but it does prevent issues with further styling.]]></description>
		<content:encoded><![CDATA[<p>What about adding:</p>
<p><code><br />
button {<br />
  font:inherit;<br />
  text-transform:inherit;<br />
}</code></p>
<p>It may not be a reset per se, but it does prevent issues with further styling.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; [Friday Links] The Winter Semester Edition - Wayne State Web Communications Blog</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-528275</link>
		<dc:creator>&#187; [Friday Links] The Winter Semester Edition - Wayne State Web Communications Blog</dc:creator>
		<pubDate>Sat, 15 Jan 2011 18:22:10 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-528275</guid>
		<description><![CDATA[[...] Reset 2.0b2: Paring Down [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Reset 2.0b2: Paring Down [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank Stallone</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-527635</link>
		<dc:creator>Frank Stallone</dc:creator>
		<pubDate>Thu, 13 Jan 2011 17:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-527635</guid>
		<description><![CDATA[I understand &lt;a href=&quot;http://meyerweb.com/eric/thoughts/2011/01/05/looking-for-focus/&quot; rel=&quot;nofollow&quot;&gt;why you removed&lt;/a&gt; &lt;code&gt;outline: 0&lt;/code&gt; from the first declaration and feel it is justified. In &lt;a href=&quot;http://meyerweb.com/eric/thoughts/2011/01/03/reset-revisited/&quot; rel=&quot;nofollow&quot;&gt;v2.0 b1&lt;/a&gt; I struggled with leaving the &lt;code&gt;ins { text-decoration: none }&lt;/code&gt; in the reset since in my own base styles I do including &lt;code&gt;ins&lt;/code&gt; styles. I then moved it from my base styles to where I had this reset &lt;i&gt;and that felt off too&lt;/i&gt;. Finally I came to the conclusion to leave my styles for &lt;code&gt;del&lt;/code&gt; and &lt;code&gt;ins&lt;/code&gt; in the base styles area of my stylesheets because they are just that, base styling not reset styling &#8212; they are there as my default styling and not resetting. 

Hah, I am a bit at odds with the decision to remove &lt;code&gt;:focus&lt;/code&gt; &#8212; since &lt;em&gt;I have used that rule to remind me to do something with it&lt;/em&gt; in the stylesheet, although now that I finally am in a routine of doing &lt;code&gt;:focus&lt;/code&gt; styling and tabbing through my page to make sure something shows I am letting go of that as well. =)

I am looking forward to see what is in store for v2.0 b3 and enjoy reading comments of those who are more advanced in their knowledge and theory of how things get done with HTML and CSS. Thanks for revisiting the reset Eric! =D]]></description>
		<content:encoded><![CDATA[<p>I understand <a href="http://meyerweb.com/eric/thoughts/2011/01/05/looking-for-focus/" rel="nofollow">why you removed</a> <code>outline: 0</code> from the first declaration and feel it is justified. In <a href="http://meyerweb.com/eric/thoughts/2011/01/03/reset-revisited/" rel="nofollow">v2.0 b1</a> I struggled with leaving the <code>ins { text-decoration: none }</code> in the reset since in my own base styles I do including <code>ins</code> styles. I then moved it from my base styles to where I had this reset <i>and that felt off too</i>. Finally I came to the conclusion to leave my styles for <code>del</code> and <code>ins</code> in the base styles area of my stylesheets because they are just that, base styling not reset styling &mdash; they are there as my default styling and not resetting. </p>
<p>Hah, I am a bit at odds with the decision to remove <code>:focus</code> &mdash; since <em>I have used that rule to remind me to do something with it</em> in the stylesheet, although now that I finally am in a routine of doing <code>:focus</code> styling and tabbing through my page to make sure something shows I am letting go of that as well. =)</p>
<p>I am looking forward to see what is in store for v2.0 b3 and enjoy reading comments of those who are more advanced in their knowledge and theory of how things get done with HTML and CSS. Thanks for revisiting the reset Eric! =D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-527058</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 12 Jan 2011 01:06:40 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-527058</guid>
		<description><![CDATA[Do you think it would be useful to include the focus selector, but without any rules? In other words,

&lt;code&gt;/* remember to define visible focus styles! */
:focus {
}&lt;/code&gt;

This way, the user *shouldn&#039;t* forget to define a style.]]></description>
		<content:encoded><![CDATA[<p>Do you think it would be useful to include the focus selector, but without any rules? In other words,</p>
<p><code>/* remember to define visible focus styles! */<br />
:focus {<br />
}</code></p>
<p>This way, the user *shouldn&#8217;t* forget to define a style.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Evandro Oliveira</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526969</link>
		<dc:creator>Evandro Oliveira</dc:creator>
		<pubDate>Tue, 11 Jan 2011 18:21:38 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-526969</guid>
		<description><![CDATA[It&#039;s complete? Looks smaller than previous version. Sorry for lazyness.]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s complete? Looks smaller than previous version. Sorry for lazyness.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526950</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Tue, 11 Jan 2011 15:40:19 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-526950</guid>
		<description><![CDATA[&lt;a href=&quot;http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526658&quot; rel=&quot;nofollow&quot;&gt;Nathan&lt;/a&gt;, thank you!  That makes it a lot more clear.  Also, Jeremy Keith&#039;s &lt;a href=&quot;http://pastebin.com/79hZJczT&quot; rel=&quot;nofollow&quot;&gt;recent pattern experiment&lt;/a&gt; helped once I remembered it and dug it up.

&lt;a href=&quot;http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526856&quot; rel=&quot;nofollow&quot;&gt;Vidal&lt;/a&gt;, not all ordered lists are numerical.  Some are alphabetic, in a variety of possible languages, and it&#039;s even possible to put bullets on an ordered list.  (You can also apply numbers or letters to an unordered list, but they don&#039;t increment without further intervention.)  This reset encourages close thinking about how to mark lists of both varieties.  That said, I suspect it&#039;s the rule that is most often removed by people adapting the reset to their own workflow.

&lt;a href=&quot;http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526939&quot; rel=&quot;nofollow&quot;&gt;bill&lt;/a&gt;, it&#039;s an element for marking up &lt;acronym title=&quot;Chinese-Japanese-Korean&quot;&gt;CJK&lt;/acronym&gt; phonetic content; here&#039;s &lt;a href=&quot;http://html5doctor.com/ruby-rt-rp-element/&quot; rel=&quot;nofollow&quot;&gt;a good introductory explanation&lt;/a&gt; from the HTML5 Doctor crew.  Not sure exactly why that rates a &quot;WTF&quot;, though.]]></description>
		<content:encoded><![CDATA[<p><a href="http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526658" rel="nofollow">Nathan</a>, thank you!  That makes it a lot more clear.  Also, Jeremy Keith&#8217;s <a href="http://pastebin.com/79hZJczT" rel="nofollow">recent pattern experiment</a> helped once I remembered it and dug it up.</p>
<p><a href="http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526856" rel="nofollow">Vidal</a>, not all ordered lists are numerical.  Some are alphabetic, in a variety of possible languages, and it&#8217;s even possible to put bullets on an ordered list.  (You can also apply numbers or letters to an unordered list, but they don&#8217;t increment without further intervention.)  This reset encourages close thinking about how to mark lists of both varieties.  That said, I suspect it&#8217;s the rule that is most often removed by people adapting the reset to their own workflow.</p>
<p><a href="http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526939" rel="nofollow">bill</a>, it&#8217;s an element for marking up <acronym title="Chinese-Japanese-Korean">CJK</acronym> phonetic content; here&#8217;s <a href="http://html5doctor.com/ruby-rt-rp-element/" rel="nofollow">a good introductory explanation</a> from the HTML5 Doctor crew.  Not sure exactly why that rates a &#8220;WTF&#8221;, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526939</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Tue, 11 Jan 2011 14:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-526939</guid>
		<description><![CDATA[WTF is the [ruby] tag?]]></description>
		<content:encoded><![CDATA[<p>WTF is the [ruby] tag?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vidal van Bergen</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526856</link>
		<dc:creator>Vidal van Bergen</dc:creator>
		<pubDate>Tue, 11 Jan 2011 09:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-526856</guid>
		<description><![CDATA[I&#039;m just wondering, do you need to reset the list-styles on ul &amp; ol? are there any differences between browsers on that front?
Aren&#039;t all OL&#039;s numerical, and all UL&#039;s follow the nesting - black dot - white dot - square - square - square - etc...

If not, you&#039;d just be deleting the rule by default, or rebuild them using your own styles anyway.

If you want a custom list style, then you set that list style either for your specific list or globally using the ul/ol selectors, somewhat like the :focus and the ins/del selectors.

Unless you want to reset those to nothing so as to remove the nesting dots differences.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m just wondering, do you need to reset the list-styles on ul &amp; ol? are there any differences between browsers on that front?<br />
Aren&#8217;t all OL&#8217;s numerical, and all UL&#8217;s follow the nesting &#8211; black dot &#8211; white dot &#8211; square &#8211; square &#8211; square &#8211; etc&#8230;</p>
<p>If not, you&#8217;d just be deleting the rule by default, or rebuild them using your own styles anyway.</p>
<p>If you want a custom list style, then you set that list style either for your specific list or globally using the ul/ol selectors, somewhat like the :focus and the ins/del selectors.</p>
<p>Unless you want to reset those to nothing so as to remove the nesting dots differences.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Smit</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526658</link>
		<dc:creator>Nathan Smit</dc:creator>
		<pubDate>Mon, 10 Jan 2011 22:12:25 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-526658</guid>
		<description><![CDATA[As far as I can tell, [datalist] seems to be treated like the drop-down in a [select], so you&#039;re right in not resetting it, as browsers will probably do their own thing with it anyway.

Here&#039;s a demo (currently works in Opera only)...
http://html5.org/demos/dev.opera.com/article-examples.html]]></description>
		<content:encoded><![CDATA[<p>As far as I can tell, [datalist] seems to be treated like the drop-down in a [select], so you&#8217;re right in not resetting it, as browsers will probably do their own thing with it anyway.</p>
<p>Here&#8217;s a demo (currently works in Opera only)&#8230;<br />
<a href="http://html5.org/demos/dev.opera.com/article-examples.html" rel="nofollow">http://html5.org/demos/dev.opera.com/article-examples.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ross Olson</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526647</link>
		<dc:creator>Ross Olson</dc:creator>
		<pubDate>Mon, 10 Jan 2011 21:14:29 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-526647</guid>
		<description><![CDATA[Eric wrote:

&lt;blockquote&gt;I basically left text-decoration alone in this reset; &lt;em&gt;reset&lt;/em&gt; and del were the exceptions.&lt;/blockquote&gt;

I think you meant &lt;code&gt;ins&lt;/code&gt; here.

I really like what you&#039;ve done with this. Thanks Eric. (Am I the only one who thinks the &lt;code&gt;mark&lt;/code&gt; tag was an Easter Egg for Mark Pilgrim?)]]></description>
		<content:encoded><![CDATA[<p>Eric wrote:</p>
<blockquote><p>I basically left text-decoration alone in this reset; <em>reset</em> and del were the exceptions.</p></blockquote>
<p>I think you meant <code>ins</code> here.</p>
<p>I really like what you&#8217;ve done with this. Thanks Eric. (Am I the only one who thinks the <code>mark</code> tag was an Easter Egg for Mark Pilgrim?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bridget Stewart</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526641</link>
		<dc:creator>Bridget Stewart</dc:creator>
		<pubDate>Mon, 10 Jan 2011 20:48:50 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-526641</guid>
		<description><![CDATA[I think you made the right call all the way around. I wouldn&#039;t have argued one way or another for &lt;code&gt;ins&lt;/code&gt; or &lt;code&gt;del&lt;/code&gt; because I have never had need of them in production environments at any job I have had. Since they weren&#039;t things on the forefront of my needs, I basically didn&#039;t pay attention to them. That was wrong of me. I sincerely apologize to the community at large. ;-)

However, now that you explain your rationale for the changes regarding them, I wholeheartedly agree.]]></description>
		<content:encoded><![CDATA[<p>I think you made the right call all the way around. I wouldn&#8217;t have argued one way or another for <code>ins</code> or <code>del</code> because I have never had need of them in production environments at any job I have had. Since they weren&#8217;t things on the forefront of my needs, I basically didn&#8217;t pay attention to them. That was wrong of me. I sincerely apologize to the community at large. ;-)</p>
<p>However, now that you explain your rationale for the changes regarding them, I wholeheartedly agree.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webstandard Blog</title>
		<link>http://meyerweb.com/eric/thoughts/2011/01/10/reset-2-0b2-paring-down/#comment-526630</link>
		<dc:creator>Webstandard Blog</dc:creator>
		<pubDate>Mon, 10 Jan 2011 20:12:34 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/?p=1448#comment-526630</guid>
		<description><![CDATA[Nice and helpful because of the additional support of HTML5 elements. But very often I remove the &quot;table declaration&quot;, because I often use table designs based on &quot;border-collapse: separate&quot;.]]></description>
		<content:encoded><![CDATA[<p>Nice and helpful because of the additional support of HTML5 elements. But very often I remove the &#8220;table declaration&#8221;, because I often use table designs based on &#8220;border-collapse: separate&#8221;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->