|
DWS -> Display: block not showing in IE (3/9/2007 17:04:37)
|
Apparently after three years a client of mine called to say that the menues on their site stopped working. It was created and tested for Firefox. Well, they dont work in IE and Im getting a bit frustrated. So, I created some simple tests. Apparently IE cant do a LOT of things. This displays on every browser that I have except IE. Yes I know its not pretty but its just some quick and dirty testing. Is there ANY way to get around this issue with IE not showing things on hover? <html>
<head>
<style type="text/css">
.none { display: none;}
#active:hover li { display: block; }
#active li { display: none; }
ul { list-style-type: none;}
</style>
</head>
<body>
<h1>This is a H1</h1>
<h1 class="none">You shouldnt see this one.</h1>
<p>You can see this.</p>
<ul id="display">
<li id="active">
<a href="#">And...</a>
<ul id="another">
<li id="alsoactive">you should now see this!</li>
</ul>
</li>
</ul>
</body>
</html>
|
|
|
|