Revisions

  • dd6236 teddyze... Tue Sep 02 04:07:27 -0700 2008
gist: 8400 Download_button fork
public
Public Clone URL: git://gist.github.com/8400.git
Embed All Files: show embed
element_hover_in_ie.css #
1
2
3
4
5
6
7
8
#nav li:hover, #nav li.hover { /* all your beautiful hover styles in here */ }
 
* html #nav li {
unicode-bidi: expression(
this.onmouseover = function(){this.className += ' hover';},
this.onmouseout = function(){this.className = this.className.replace('hover','');}
);
}