<?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: whatever:hover,  fast and easy</title>
	<atom:link href="http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/</link>
	<description>We are reasonable people.</description>
	<lastBuildDate>Sat, 10 Oct 2009 18:43:56 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Pathfinder</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-115655</link>
		<dc:creator>Pathfinder</dc:creator>
		<pubDate>Sat, 29 Mar 2008 06:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-115655</guid>
		<description>Thank you so much, I was able to make drop down menus work in IE 6 with this lovely trick. I too do not like to use htc files as the cause problems on php sites and for some reason aol&#039;s browser from time to time.

You have a very nicely laid out example. Many others drop hints, but you show it all.

Peace</description>
		<content:encoded><![CDATA[<p>Thank you so much, I was able to make drop down menus work in IE 6 with this lovely trick. I too do not like to use htc files as the cause problems on php sites and for some reason aol&#8217;s browser from time to time.</p>
<p>You have a very nicely laid out example. Many others drop hints, but you show it all.</p>
<p>Peace</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-113945</link>
		<dc:creator>Klaus</dc:creator>
		<pubDate>Wed, 19 Mar 2008 09:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-113945</guid>
		<description>The whole thing was developed for IE 6, because in IE 7 you don&#039;t need it anyway. And the demo works perfectly for me.</description>
		<content:encoded><![CDATA[<p>The whole thing was developed for IE 6, because in IE 7 you don&#8217;t need it anyway. And the demo works perfectly for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: uni</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-113938</link>
		<dc:creator>uni</dc:creator>
		<pubDate>Wed, 19 Mar 2008 09:06:23 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-113938</guid>
		<description>But its not working in IE 6.0. Is it possible for u to give the code which will support ie 6.0 :-)</description>
		<content:encoded><![CDATA[<p>But its not working in IE 6.0. Is it possible for u to give the code which will support ie 6.0 :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-10225</link>
		<dc:creator>Klaus</dc:creator>
		<pubDate>Wed, 15 Nov 2006 07:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-10225</guid>
		<description>Hm, I see a lot of redundant code there and an invalid property that shouldn&#039;t be served to browsers other than &lt;abbr title=&quot;Internet Explorer&quot;&gt;IE&lt;/abbr&gt;...</description>
		<content:encoded><![CDATA[<p>Hm, I see a lot of redundant code there and an invalid property that shouldn&#8217;t be served to browsers other than <abbr title="Internet Explorer">IE</abbr>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lkehoe</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-10179</link>
		<dc:creator>lkehoe</dc:creator>
		<pubDate>Tue, 14 Nov 2006 20:21:35 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-10179</guid>
		<description>Thank you for the response. It did work. 
Here is the code in case others may benefit from the example:

    tr.agent_note_heading {
        border: 1px solid #000;
        padding: 2px;
        m: expression(this.onmouseover =  new Function(&quot;this.className = &#039;agent_note_heading-hover&#039;;&quot;));
        font-family: verdana,lucida grande, sans-serif;
        font-size: 11px;
    }

    tr.agent_note_heading:hover,
    tr.agent_note_heading-hover {
        color: black;
        font-family: verdana,lucida grande, sans-serif;
        font-size: 11px;

        background-color: #c4e3f8;
        font-weight: bold;
        m: expression(this.onmouseout = new Function(&quot;this.className = &#039;agent_note_heading&#039;;&quot;));
    }

</description>
		<content:encoded><![CDATA[<p>Thank you for the response. It did work.<br />
Here is the code in case others may benefit from the example:</p>
<p>    tr.agent_note_heading {<br />
        border: 1px solid #000;<br />
        padding: 2px;<br />
        m: expression(this.onmouseover =  new Function(&#8221;this.className = &#8216;agent_note_heading-hover&#8217;;&#8221;));<br />
        font-family: verdana,lucida grande, sans-serif;<br />
        font-size: 11px;<br />
    }</p>
<p>    tr.agent_note_heading:hover,<br />
    tr.agent_note_heading-hover {<br />
        color: black;<br />
        font-family: verdana,lucida grande, sans-serif;<br />
        font-size: 11px;</p>
<p>        background-color: #c4e3f8;<br />
        font-weight: bold;<br />
        m: expression(this.onmouseout = new Function(&#8221;this.className = &#8216;agent_note_heading&#8217;;&#8221;));<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-10072</link>
		<dc:creator>Klaus</dc:creator>
		<pubDate>Mon, 13 Nov 2006 20:44:59 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-10072</guid>
		<description>Yes, this technique does work in &lt;abbr title=&quot;Internet Explorer&quot;&gt;IE&lt;/abbr&gt; 6, simply visit the demo with &lt;abbr&gt;IE&lt;/abbr&gt; and test it.

What is going wrong in your code is that: You declared a background for the selector &lt;code&gt;tr.agent_note_heading&lt;/code&gt;, and for the hover background you declared just a class without a type selector: &lt;code&gt;.whateverhover&lt;/code&gt;. Thus the first one has a higher specificity and will be applied.

Change your selector to &lt;code&gt;tr.whateverhover&lt;/code&gt; to let them have equal specificity and make sure this one succeeds the other one in your style sheet.

&lt;a href=&quot;http://www.w3.org/TR/CSS21/cascade.html#specificity&quot; rel=&quot;nofollow&quot;&gt;More on selector specificity.&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Yes, this technique does work in <abbr title="Internet Explorer">IE</abbr> 6, simply visit the demo with <abbr>IE</abbr> and test it.</p>
<p>What is going wrong in your code is that: You declared a background for the selector <code>tr.agent_note_heading</code>, and for the hover background you declared just a class without a type selector: <code>.whateverhover</code>. Thus the first one has a higher specificity and will be applied.</p>
<p>Change your selector to <code>tr.whateverhover</code> to let them have equal specificity and make sure this one succeeds the other one in your style sheet.</p>
<p><a href="http://www.w3.org/TR/CSS21/cascade.html#specificity" rel="nofollow">More on selector specificity.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lkehoe</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-10050</link>
		<dc:creator>lkehoe</dc:creator>
		<pubDate>Mon, 13 Nov 2006 17:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-10050</guid>
		<description>This is the corresponding html template
&quot;); return false;&#039;
  width=100%&gt;
  
    
  
  
    
  
</description>
		<content:encoded><![CDATA[<p>This is the corresponding html template<br />
&#8220;); return false;&#8217;<br />
  width=100%&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lkehoe</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-10049</link>
		<dc:creator>lkehoe</dc:creator>
		<pubDate>Mon, 13 Nov 2006 16:55:34 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-10049</guid>
		<description>I tried out this code and it failed to work in IE 6.0 , should this technique work for IE 6? Please see below :

tr.agent_note_heading {
    background: #eaeaea;

}

tr.agent_note_heading:hover, .whateverhover {
     background: #808080;
}


tr.agent_note_heading {
    behavior: expression(
        this.onmouseover = new Function(&quot;this.className += &#039; whateverhover&#039;;&quot;),
        this.onmouseout = new Function(&quot;this.className = this.className.replace(&#039;whateverhover&#039;, &#039;&#039;);&quot;),
        this.style.behavior = null
    );
}</description>
		<content:encoded><![CDATA[<p>I tried out this code and it failed to work in IE 6.0 , should this technique work for IE 6? Please see below :</p>
<p>tr.agent_note_heading {<br />
    background: #eaeaea;</p>
<p>}</p>
<p>tr.agent_note_heading:hover, .whateverhover {<br />
     background: #808080;<br />
}</p>
<p>tr.agent_note_heading {<br />
    behavior: expression(<br />
        this.onmouseover = new Function(&#8221;this.className += &#8216; whateverhover&#8217;;&#8221;),<br />
        this.onmouseout = new Function(&#8221;this.className = this.className.replace(&#8217;whateverhover&#8217;, &#8221;);&#8221;),<br />
        this.style.behavior = null<br />
    );<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-5570</link>
		<dc:creator>Klaus</dc:creator>
		<pubDate>Fri, 15 Sep 2006 19:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-5570</guid>
		<description>Yes it should (although I haven&#039;t tested it):

Standards CSS:
&lt;code&gt;td:hover, td.hover {
background: #eaeaea url(/path/to/your/image.png) no-repeat left top;
}&lt;/code&gt;

IE extra:
&lt;code&gt;td {
behavior: expression(
this.onmouseover = new Function(&quot;this.className += &#039; hover&#039;&quot;),
this.onmouseout = new Function(&quot;this.className = this.className.replace(&#039; hover&#039;, &#039;&#039;)&quot;),
this.style.behavior=null
);
}&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Yes it should (although I haven&#8217;t tested it):</p>
<p>Standards CSS:<br />
<code>td:hover, td.hover {<br />
background: #eaeaea url(/path/to/your/image.png) no-repeat left top;<br />
}</code></p>
<p>IE extra:<br />
<code>td {<br />
behavior: expression(<br />
this.onmouseover = new Function("this.className += ' hover'"),<br />
this.onmouseout = new Function("this.className = this.className.replace(' hover', '')"),<br />
this.style.behavior=null<br />
);<br />
}</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cameling</title>
		<link>http://www.stilbuero.de/2005/07/19/whateverhover-fast-and-easy/comment-page-1/#comment-5521</link>
		<dc:creator>Cameling</dc:creator>
		<pubDate>Thu, 14 Sep 2006 19:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://wp1028875.wp049.webpack.hosteurope.de/2005/07/19/whateverhover-fast-and-easy/#comment-5521</guid>
		<description>And this works on a table cell hover? I&#039;m sorry.. I&#039;m not quite getting it.</description>
		<content:encoded><![CDATA[<p>And this works on a table cell hover? I&#8217;m sorry.. I&#8217;m not quite getting it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
