<?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: CSS fix for the double margin float bug in IE6</title>
	<atom:link href="http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/feed/" rel="self" type="application/rss+xml" />
	<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 16 Mar 2010 15:31:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: dijonyumm</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-5056</link>
		<dc:creator>dijonyumm</dc:creator>
		<pubDate>Sat, 13 Mar 2010 02:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-5056</guid>
		<description>Very shorts, simple and easy to understand, bet some more comments from your side would be great</description>
		<content:encoded><![CDATA[<p>Very shorts, simple and easy to understand, bet some more comments from your side would be great</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alessandro</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-3061</link>
		<dc:creator>Alessandro</dc:creator>
		<pubDate>Sun, 19 Apr 2009 18:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-3061</guid>
		<description>Instead of using display:inline or if statement there is an easier and safer solution: using this simple js bug fix http://www.programmatorephp.it/jquery/ie6-double-margin-hack.php
Other solutions have some side effects.</description>
		<content:encoded><![CDATA[<p>Instead of using display:inline or if statement there is an easier and safer solution: using this simple js bug fix <a href="http://www.programmatorephp.it/jquery/ie6-double-margin-hack.php" rel="nofollow">http://www.programmatorephp.it/jquery/ie6-double-margin-hack.php</a><br />
Other solutions have some side effects.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 100+ Massive CSS Toolbox&#160;&#124;&#160;tripwire magazine</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-3045</link>
		<dc:creator>100+ Massive CSS Toolbox&#160;&#124;&#160;tripwire magazine</dc:creator>
		<pubDate>Fri, 10 Apr 2009 22:16:38 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-3045</guid>
		<description>[...] CSS fix for the double margin float bug in IE6 [...]</description>
		<content:encoded><![CDATA[<p>[...] CSS fix for the double margin float bug in IE6 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: campuscodi</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-3037</link>
		<dc:creator>campuscodi</dc:creator>
		<pubDate>Sun, 05 Apr 2009 01:01:47 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-3037</guid>
		<description>you can find a good answer to your dilemma here: http://www.webmasterworld.com/forum83/7301.htm</description>
		<content:encoded><![CDATA[<p>you can find a good answer to your dilemma here: <a href="http://www.webmasterworld.com/forum83/7301.htm" rel="nofollow">http://www.webmasterworld.com/forum83/7301.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Brown</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-2945</link>
		<dc:creator>Bill Brown</dc:creator>
		<pubDate>Mon, 23 Feb 2009 14:59:30 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-2945</guid>
		<description>@M

Using display:inline is cross-browser friendly. Floated elements are treated as block-level by all browsers and specifying something like:

div
{
  display:inline; /* cancel IE double margin bug */
  float:left;
  margin-left:20px;
}

...should work fine in all browsers.</description>
		<content:encoded><![CDATA[<p>@M</p>
<p>Using display:inline is cross-browser friendly. Floated elements are treated as block-level by all browsers and specifying something like:</p>
<p>div<br />
{<br />
  display:inline; /* cancel IE double margin bug */<br />
  float:left;<br />
  margin-left:20px;<br />
}</p>
<p>&#8230;should work fine in all browsers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-2944</link>
		<dc:creator>M</dc:creator>
		<pubDate>Mon, 23 Feb 2009 10:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-2944</guid>
		<description>Can you give any example where &quot;display:inline;&quot; causes problems in different browsers?</description>
		<content:encoded><![CDATA[<p>Can you give any example where &#8220;display:inline;&#8221; causes problems in different browsers?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Hiester</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-2933</link>
		<dc:creator>Dan Hiester</dc:creator>
		<pubDate>Sat, 07 Feb 2009 13:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-2933</guid>
		<description>This all ties into a specific internal value in IE6 called hasLayout... which, in the era of lolcats and I Can Has Cheezburger, is absolutely delicious. I personally leave a comment in my IE6 stylesheet that says, &quot;IE6 can hasLayout.&quot;</description>
		<content:encoded><![CDATA[<p>This all ties into a specific internal value in IE6 called hasLayout&#8230; which, in the era of lolcats and I Can Has Cheezburger, is absolutely delicious. I personally leave a comment in my IE6 stylesheet that says, &#8220;IE6 can hasLayout.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil Brighton</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-2872</link>
		<dc:creator>Phil Brighton</dc:creator>
		<pubDate>Fri, 12 Dec 2008 15:50:47 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-2872</guid>
		<description>Thanks Dustin

Found an issue with a web and IE6, your info rapidily fixed the issue.

Phil</description>
		<content:encoded><![CDATA[<p>Thanks Dustin</p>
<p>Found an issue with a web and IE6, your info rapidily fixed the issue.</p>
<p>Phil</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill Brown</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-2736</link>
		<dc:creator>Bill Brown</dc:creator>
		<pubDate>Tue, 19 Aug 2008 23:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-2736</guid>
		<description>I was under the impression that floated elements are treated as display:block regardless of what you specify in your stylesheet. Don&#039;t other browsers simply ignore display:inline and treat the float as a block?

I&#039;ve used this approach for a few years now and haven&#039;t seen any drawbacks. Which browsers produce unexpected results?</description>
		<content:encoded><![CDATA[<p>I was under the impression that floated elements are treated as display:block regardless of what you specify in your stylesheet. Don&#8217;t other browsers simply ignore display:inline and treat the float as a block?</p>
<p>I&#8217;ve used this approach for a few years now and haven&#8217;t seen any drawbacks. Which browsers produce unexpected results?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: katalyst</title>
		<link>http://dustinbrewer.com/css-fix-for-the-double-margin-float-bug-in-ie6/comment-page-1/#comment-2708</link>
		<dc:creator>katalyst</dc:creator>
		<pubDate>Thu, 24 Jul 2008 10:30:34 +0000</pubDate>
		<guid isPermaLink="false">http://dustinbrewer.com/?p=157#comment-2708</guid>
		<description>omg finally

bigtime thank you! i&#039;ve been looking for a solution and yours works for me.</description>
		<content:encoded><![CDATA[<p>omg finally</p>
<p>bigtime thank you! i&#8217;ve been looking for a solution and yours works for me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
