<?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: HTML5 Reset Stylesheet</title>
	<atom:link href="http://html5doctor.com/html-5-reset-stylesheet/feed/" rel="self" type="application/rss+xml" />
	<link>http://html5doctor.com/html-5-reset-stylesheet/</link>
	<description>helping you implement HTML5 today</description>
	<lastBuildDate>Tue, 07 Feb 2012 11:44:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Network39</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-21844</link>
		<dc:creator>Network39</dc:creator>
		<pubDate>Sat, 28 Jan 2012 15:16:34 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-21844</guid>
		<description>First let me say what a great site.
Second, I am just starting out with web design and would like to ask is it better to concentrate on html5 from the outset?
Thanks,
Penny</description>
		<content:encoded><![CDATA[<p>First let me say what a great site.<br />
Second, I am just starting out with web design and would like to ask is it better to concentrate on html5 from the outset?<br />
Thanks,<br />
Penny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gustavo Krause</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-18168</link>
		<dc:creator>Gustavo Krause</dc:creator>
		<pubDate>Fri, 21 Oct 2011 18:31:12 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-18168</guid>
		<description>We did tests about each html5 element behavior, also got some information based on others internet public resets, and finally we created a CSS base document with one ideal reset to reach our needs.

If you are interested in knowing our work will be a pleasure to share our document!

CSS base document: http://www.webstandards.blog.br/css/documento-base-para-css/

&lt;code&gt;/* reset */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, menu, form, fieldset, legend, figure, section, summary { margin: 0; padding: 0; }
article, aside, details, summary, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
button, fieldset, iframe, img { border: 0; }&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>We did tests about each html5 element behavior, also got some information based on others internet public resets, and finally we created a CSS base document with one ideal reset to reach our needs.</p>
<p>If you are interested in knowing our work will be a pleasure to share our document!</p>
<p>CSS base document: <a href="http://www.webstandards.blog.br/css/documento-base-para-css/" rel="nofollow">http://www.webstandards.blog.br/css/documento-base-para-css/</a></p>
<p><code>/* reset */<br />
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, menu, form, fieldset, legend, figure, section, summary { margin: 0; padding: 0; }<br />
article, aside, details, summary, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }<br />
button, fieldset, iframe, img { border: 0; }</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-17548</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Mon, 12 Sep 2011 00:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-17548</guid>
		<description>mmm... think i found a browser bug! 

when you have a div id=&quot;container&quot; centre aligned (margin:auto; in the css) and you want to push the container div down - by say  20px - to create a bit of space at the top of the page (an actual client request... ) th CSS: margin:auto; then change to margin:20px auto 0 auto;) the body background repeat-x will also jump down with the #container.

fix it by adding a 1px border to the top of the page. stupid i know but that&#039;s browser for you... border-top:#fff 1px solid;margin-top:-1px; 

another way to fix this is to remove the background-color:#FFFFFF; from the html rule in the reset(if you have it in there).

ps: this only happens if you have a background color on your html tag in the css which is part of some css reset file available out there.
personally i just removed it but you may need to give your html tag a bg colour.


cheers!</description>
		<content:encoded><![CDATA[<p>mmm&#8230; think i found a browser bug! </p>
<p>when you have a div id=&#8221;container&#8221; centre aligned (margin:auto; in the css) and you want to push the container div down &#8211; by say  20px &#8211; to create a bit of space at the top of the page (an actual client request&#8230; ) th CSS: margin:auto; then change to margin:20px auto 0 auto;) the body background repeat-x will also jump down with the #container.</p>
<p>fix it by adding a 1px border to the top of the page. stupid i know but that&#8217;s browser for you&#8230; border-top:#fff 1px solid;margin-top:-1px; </p>
<p>another way to fix this is to remove the background-color:#FFFFFF; from the html rule in the reset(if you have it in there).</p>
<p>ps: this only happens if you have a background color on your html tag in the css which is part of some css reset file available out there.<br />
personally i just removed it but you may need to give your html tag a bg colour.</p>
<p>cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chuck Windom</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-17145</link>
		<dc:creator>Chuck Windom</dc:creator>
		<pubDate>Fri, 12 Aug 2011 16:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-17145</guid>
		<description>this is great info I appreciate you explaining the reset. I definately will use it in my next project</description>
		<content:encoded><![CDATA[<p>this is great info I appreciate you explaining the reset. I definately will use it in my next project</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Useful CSS3 Snippets for IE &#124; DesignNonsense.Com</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-16987</link>
		<dc:creator>Useful CSS3 Snippets for IE &#124; DesignNonsense.Com</dc:creator>
		<pubDate>Fri, 29 Jul 2011 11:58:55 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-16987</guid>
		<description>[...] the advent of HTML5, including the new HTML elements in your CSS reset is also a good idea. html5doctor provides a good update to Eric Meyer’s reset that you can use for free in your projects. You can [...]</description>
		<content:encoded><![CDATA[<p>[...] the advent of HTML5, including the new HTML elements in your CSS reset is also a good idea. html5doctor provides a good update to Eric Meyer’s reset that you can use for free in your projects. You can [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan Kłosowski</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-16344</link>
		<dc:creator>Jan Kłosowski</dc:creator>
		<pubDate>Fri, 15 Jul 2011 10:16:26 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-16344</guid>
		<description>If there is &lt;code&gt;small&lt;/code&gt; having more than 1 line of text for some purpose it starts to break base-line alignment in Firefox 5 adding +/-1px per line.

I fix it by adding simple: &lt;code&gt;small { line-height:1 }&lt;/code&gt;

Another simple thing I include to my reset is styling nested list number (1.1.1):

&lt;code&gt;ol {
  counter-reset: item;
  }
ol li {
  display: block;
  }
ol li:before {
  counter-increment: item;
  content: counters(item, &quot;.&quot;) &quot;. &quot;;
  }&lt;/code&gt;

Anyway - I enjoy your reset, a lot and use it in my projects.</description>
		<content:encoded><![CDATA[<p>If there is <code>small</code> having more than 1 line of text for some purpose it starts to break base-line alignment in Firefox 5 adding +/-1px per line.</p>
<p>I fix it by adding simple: <code>small { line-height:1 }</code></p>
<p>Another simple thing I include to my reset is styling nested list number (1.1.1):</p>
<p><code>ol {<br />
  counter-reset: item;<br />
  }<br />
ol li {<br />
  display: block;<br />
  }<br />
ol li:before {<br />
  counter-increment: item;<br />
  content: counters(item, ".") ". ";<br />
  }</code></p>
<p>Anyway &#8211; I enjoy your reset, a lot and use it in my projects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-15219</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 24 Jun 2011 12:52:27 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-15219</guid>
		<description>Hi,

I wanted to ask what do you think about adding the following reset row:

a img {border: 0;}

It is something that I always find useful.

Thanks,
Michael</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I wanted to ask what do you think about adding the following reset row:</p>
<p>a img {border: 0;}</p>
<p>It is something that I always find useful.</p>
<p>Thanks,<br />
Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reset de propiedades CSS en HTML5 &#8211; Kaduya</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-15201</link>
		<dc:creator>Reset de propiedades CSS en HTML5 &#8211; Kaduya</dc:creator>
		<pubDate>Mon, 20 Jun 2011 21:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-15201</guid>
		<description>[...] a html5doctor Descarga de las CSS en Google [...]</description>
		<content:encoded><![CDATA[<p>[...] a html5doctor Descarga de las CSS en Google [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-15101</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 02 Jun 2011 02:55:59 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-15101</guid>
		<description>Just thought I&#039;d point out, there are whitespace errors in the CSS download.  Make it all tabs or all spaces, not mixed.  As it is now, I have to reformat it, removing trailing whitespace to satisfy Git and Gerrit (and myself).

Thanks for the modern reset CSS :)</description>
		<content:encoded><![CDATA[<p>Just thought I&#8217;d point out, there are whitespace errors in the CSS download.  Make it all tabs or all spaces, not mixed.  As it is now, I have to reformat it, removing trailing whitespace to satisfy Git and Gerrit (and myself).</p>
<p>Thanks for the modern reset CSS <img src='http://html5doctor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BlaueLimo HTML5 Grundgerüst &#8211; Codename „Blue Hero“ - BlaueLimo v2</title>
		<link>http://html5doctor.com/html-5-reset-stylesheet/#comment-15029</link>
		<dc:creator>BlaueLimo HTML5 Grundgerüst &#8211; Codename „Blue Hero“ - BlaueLimo v2</dc:creator>
		<pubDate>Sun, 22 May 2011 18:16:32 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=622#comment-15029</guid>
		<description>[...] Fertig eingebundene CSS Datei mit einem HTML5 CSS Reset von HTML5Doctor [...]</description>
		<content:encoded><![CDATA[<p>[...] Fertig eingebundene CSS Datei mit einem HTML5 CSS Reset von HTML5Doctor [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

