<?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"
	>
<channel>
	<title>Comments on: IE6 bug: Ignored selector hover bug</title>
	<atom:link href="http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/feed/" rel="self" type="application/rss+xml" />
	<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/</link>
	<description>You have found Friendly Bit, a web development blog. I focus on client side technologies like CSS, HTML and Javascript. You find my articles below and categories to the right.</description>
	<pubDate>Sat, 17 May 2008 11:26:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Jared</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-27886</link>
		<dc:creator>Jared</dc:creator>
		<pubDate>Fri, 28 Sep 2007 00:22:08 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-27886</guid>
		<description>@zcorpan

&lt;a href="somewhere" rel="nofollow"&gt;
  Cancel
&lt;/a&gt;

Is valid and has the same problem.</description>
		<content:encoded><![CDATA[<p>@zcorpan</p>
<p><a href="somewhere" rel="nofollow"><br />
  Cancel<br />
</a></p>
<p>Is valid and has the same problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger Gordon</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-24317</link>
		<dc:creator>Roger Gordon</dc:creator>
		<pubDate>Wed, 16 May 2007 10:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-24317</guid>
		<description>Thank you so much for this sanity-saving fix. I've spent the last 6+ hours trying to figure this one out with no luck. It works perfectly now with
a:hover {paddding-top: 0;} applied.
Much appreciated, and I agree that you should contact the guys over at P.I.E with this bug, as I couldn't find a solution to this problem there.</description>
		<content:encoded><![CDATA[<p>Thank you so much for this sanity-saving fix. I&#8217;ve spent the last 6+ hours trying to figure this one out with no luck. It works perfectly now with<br />
a:hover {paddding-top: 0;} applied.<br />
Much appreciated, and I agree that you should contact the guys over at P.I.E with this bug, as I couldn&#8217;t find a solution to this problem there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arne</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-24143</link>
		<dc:creator>Arne</dc:creator>
		<pubDate>Fri, 11 May 2007 17:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-24143</guid>
		<description>Yes, but it isn't just annoying, it's really corrupting the web... this crappy browser... :-(

I really hope that systems with OS' "below" Windows XP will disappear soon, as we can assume that in the world of Windows XP we will at least see a great migration from IE6 to IE7 this year. Doesn't solve all the problems, but the most annoying ones I think. Microsoft should only be more rigorous in distributing the new version... and yes, to users of illegal versions too, as they are a great amount of windows users at all. So if they really want to help us developers and the web itself they should make possible to update to IE7 without genuine authentication I think. I think it's a better choice to help the web than to manage excluding illegal versions...</description>
		<content:encoded><![CDATA[<p>Yes, but it isn&#8217;t just annoying, it&#8217;s really corrupting the web&#8230; this crappy browser&#8230; :-(</p>
<p>I really hope that systems with OS&#8217; &#8220;below&#8221; Windows XP will disappear soon, as we can assume that in the world of Windows XP we will at least see a great migration from IE6 to IE7 this year. Doesn&#8217;t solve all the problems, but the most annoying ones I think. Microsoft should only be more rigorous in distributing the new version&#8230; and yes, to users of illegal versions too, as they are a great amount of windows users at all. So if they really want to help us developers and the web itself they should make possible to update to IE7 without genuine authentication I think. I think it&#8217;s a better choice to help the web than to manage excluding illegal versions&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil Stenström</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-24036</link>
		<dc:creator>Emil Stenström</dc:creator>
		<pubDate>Tue, 08 May 2007 17:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-24036</guid>
		<description>@Arne: That's easy, IE6 does not support the adjecent sibling selector at all. You'll have to use javascript for that... Annoying, isn't it?</description>
		<content:encoded><![CDATA[<p>@Arne: That&#8217;s easy, IE6 does not support the adjecent sibling selector at all. You&#8217;ll have to use javascript for that&#8230; Annoying, isn&#8217;t it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arne</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-24031</link>
		<dc:creator>Arne</dc:creator>
		<pubDate>Tue, 08 May 2007 13:06:26 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-24031</guid>
		<description>It seems that this fix doesn't work for all combinations. At least when using adjacent sibling selectors the fix doesn't work.

a:hover + .nextElement { display:block; }

does not work in IE6, no matter what I am trying. Have you got a tipp how I could get this running with IE6?</description>
		<content:encoded><![CDATA[<p>It seems that this fix doesn&#8217;t work for all combinations. At least when using adjacent sibling selectors the fix doesn&#8217;t work.</p>
<p>a:hover + .nextElement { display:block; }</p>
<p>does not work in IE6, no matter what I am trying. Have you got a tipp how I could get this running with IE6?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil Stenström</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8421</link>
		<dc:creator>Emil Stenström</dc:creator>
		<pubDate>Mon, 04 Dec 2006 18:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8421</guid>
		<description>@Rasmus Kaj: Sorry for not answering until now. I don't think they are related. IE probably does not even generate an event for mouseover on anything other than links, and I doubt that's the problem here.</description>
		<content:encoded><![CDATA[<p>@Rasmus Kaj: Sorry for not answering until now. I don&#8217;t think they are related. IE probably does not even generate an event for mouseover on anything other than links, and I doubt that&#8217;s the problem here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zcorpan</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8147</link>
		<dc:creator>zcorpan</dc:creator>
		<pubDate>Thu, 30 Nov 2006 21:37:17 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8147</guid>
		<description>Siegfried, a button inside a link is invalid, and HTML4 does not define what should happen when you click on a button that is inside a link, so no behavior is wrong.</description>
		<content:encoded><![CDATA[<p>Siegfried, a button inside a link is invalid, and HTML4 does not define what should happen when you click on a button that is inside a link, so no behavior is wrong.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rasmus Kaj</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8130</link>
		<dc:creator>Rasmus Kaj</dc:creator>
		<pubDate>Thu, 30 Nov 2006 13:08:47 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8130</guid>
		<description>This feels somwehat related to the fact that IE6 ignores :hover on elements other than a ...

Is that fixed in IE7?</description>
		<content:encoded><![CDATA[<p>This feels somwehat related to the fact that IE6 ignores :hover on elements other than a &#8230;</p>
<p>Is that fixed in IE7?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Siegfried</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8123</link>
		<dc:creator>Siegfried</dc:creator>
		<pubDate>Thu, 30 Nov 2006 10:26:43 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8123</guid>
		<description>There is another IE bug with links. I already posted it on several sites, but this seems to be ignored.
As you know, inside any anchor (a element) there may be any text or html inline element, and anything which is rendered visually then becomes clickable and should lead to the destination referenced by the href attribute. Not so with the IE. Just try to put a button inside the anchor. The destination is shown in the status line, but clicking on that link does nothing. This is a bug in the most basic and important feature of the web.</description>
		<content:encoded><![CDATA[<p>There is another IE bug with links. I already posted it on several sites, but this seems to be ignored.<br />
As you know, inside any anchor (a element) there may be any text or html inline element, and anything which is rendered visually then becomes clickable and should lead to the destination referenced by the href attribute. Not so with the IE. Just try to put a button inside the anchor. The destination is shown in the status line, but clicking on that link does nothing. This is a bug in the most basic and important feature of the web.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil Stenström</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8017</link>
		<dc:creator>Emil Stenström</dc:creator>
		<pubDate>Tue, 28 Nov 2006 23:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8017</guid>
		<description>@Adam: Seems that setting almost anything on a:hover works.</description>
		<content:encoded><![CDATA[<p>@Adam: Seems that setting almost anything on a:hover works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cerebral</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8006</link>
		<dc:creator>Cerebral</dc:creator>
		<pubDate>Tue, 28 Nov 2006 21:07:14 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-8006</guid>
		<description>Yeah I found this one too ;-)</description>
		<content:encoded><![CDATA[<p>Yeah I found this one too ;-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-7985</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 28 Nov 2006 16:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-7985</guid>
		<description>I've come across this before and found that:

&lt;code&gt;
a:hover {
	cursor: pointer;
}
&lt;/code&gt;

also works.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve come across this before and found that:</p>
<p><code><br />
a:hover {<br />
	cursor: pointer;<br />
}<br />
</code></p>
<p>also works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Emil Stenström</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-7946</link>
		<dc:creator>Emil Stenström</dc:creator>
		<pubDate>Mon, 27 Nov 2006 22:45:13 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-7946</guid>
		<description>@Cerebral: Good idea, I have a lot of these little bugs in my posts, I'll contact them.</description>
		<content:encoded><![CDATA[<p>@Cerebral: Good idea, I have a lot of these little bugs in my posts, I&#8217;ll contact them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cerebral</title>
		<link>http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-7940</link>
		<dc:creator>Cerebral</dc:creator>
		<pubDate>Mon, 27 Nov 2006 20:55:35 +0000</pubDate>
		<guid isPermaLink="false">http://friendlybit.com/css/ie6-bug-ignored-selector-hover-bug/#comment-7940</guid>
		<description>Good to know. Do you know another site than PIE(maybe you should contact them to add this one to their list) which gathers all those IE6 bugs ?</description>
		<content:encoded><![CDATA[<p>Good to know. Do you know another site than PIE(maybe you should contact them to add this one to their list) which gathers all those IE6 bugs ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
