how to do mouse hover in IE6

  • Thread starter Thread starter Allen Bates
  • Start date Start date
A

Allen Bates

The entire html works fine with all known browsers, includeing IE7 & IE8.
This following menu hover fix is not working in IE6.
Can you please tell me simple solution without script or activeX control?

<!--[if IE]>
<style type="text/css" media="screen">
#menu ul li {float: left; width: 100%;}
</style>
<![endif]-->
<!--[if lt IE 7]>
<style type="text/css" media="screen">
body { behavior: url(csshover.htc); font-size: 100%; }
#menu ul li a {height: 1%;}
</style>
<![endif]-->
 
rob^_^ said:
HI Allen,

Place the second conditional comment first to allow it to cascade.

The IE Web Developers Forum

http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/threads

Regards
<!--[if lt IE 7]>
<style type="text/css" media="screen">
body { behavior: url(csshover.htc); font-size: 100%; }
#menu ul li a {height: 1%;} </style>
<![endif]-->

Rob, thank you.
Can you tell me where to find IE6 onmouseover and onmouseout to implement
hover without active X control, Script or any active contents?
 
Back
Top