Hallo Zusammen,
ich bin gerade - mit Hilfe einer Vorlage - dabei, ein Dropdown-Menü zu bauen. Der Dropdown erfolgt beim Überfahren mit der Maus.
Im Firefox 2.0 funktioniert die Geschichte. Im IE 6 nicht.
Was braucht der IE 6, damit es funktioniert?
DANKE für Eure Antworten!
ich bin gerade - mit Hilfe einer Vorlage - dabei, ein Dropdown-Menü zu bauen. Der Dropdown erfolgt beim Überfahren mit der Maus.
Im Firefox 2.0 funktioniert die Geschichte. Im IE 6 nicht.
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
#menu {list-style-type:none; margin:50px 0 100px 15px; padding:0;}
#menu li {float:left; padding:0; margin:0 1px 0 0; position:relative; width:150px; height:3em; z-index:100;}
#menu li dl {position:absolute; top:0; left:0;}
#menu li a, #menu li a:visited {text-decoration:none;}
#menu li dd {display:none;}
#menu li:hover, #menu li a:hover {border:0;}
#menu li:hover dd, #menu li a:hover dd {display:block;}
#menu li:hover dl, #menu li a:hover dl {padding-bottom:20px;}
#menu table {border-collapse:collapse; padding:0; margin:-1px; font-size:1em;}
#menu dl {width: 150px; margin: 0; padding: 0; background: #c9ba65 url(bottom.gif) no-repeat bottom left; text-align:center; cursor:pointer;}
#menu dt {margin:0; padding: 5px; font-size: 1.1em; color: #fff; border-bottom:1px solid #444;}
#menu .one {background: #b2ab9b url(top.gif) no-repeat top left;}
#menu .two {background: #949e7c url(top.gif) no-repeat top left;}
#menu .three {background: #d4d8bd url(top.gif) no-repeat top left;}
#menu .four {background: #e2dfa8 url(top.gif) no-repeat top left;}
#menu dd {margin:0; padding:0; color: #fff; font-size: 1em; background: #47a; text-align:left;}
#menu dd.last {border-bottom:1px solid #444;}
.gallery dt a, .gallery dt a:visited {display:block; color:#444;}
.gallery dd a, .gallery dd a:visited {color:#fff; text-decoration:none; display:block; padding:4px 5px 4px 20px;
background: #47a url(arrow.gif) no-repeat 10px 10px; width:125px;
}
.gallery dd a:hover {background: #258 url(arrowr.gif) no-repeat 11px 10px; color:#9cf;}
</style>
</head>
<body>
<ul id="menu">
<li>
<dl class="gallery">
<dt class="one"><a href="Aktuell/index.html">Aktuell</a></dt>
<dd><a href="Aktuell/nachrichten.html">Nachrichten</a></dd>
<dd><a href="Aktuell/newsletter.html">Newsletter</a></dd>
<dd><a href="Aktuell/stellenangebote.html">Stellenangebote</a></dd>
<dd class="last"><a href="Aktuell/ausblicke.html">Ausblicke</a></dd>
</dl>
</li>
<li><a href="Unternehmen/index.html">Unternehmen</a></li>
<li><a href="Loesungen/index.html">Lösungen</a></li>
<li><a href="Spezialthemen/index.html">Spezialthemen</a></li>
<li><a href="Partner/index.html">Partner</a></li>
</ul>
</body>
</html>
Was braucht der IE 6, damit es funktioniert?
DANKE für Eure Antworten!