how to do mouse hover in IE6

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]-->
 
A

Allen Bates

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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top