nils-hero: Drop Down Menü

Beitrag lesen

Hallo,

  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  
<html>  
<head>  
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">  
<title>Dynamisch Navigationsleisten einblenden</title>  
<style type="text/css">  

~~~~~~css
  
* {  
 margin: 0;  
 padding: 0;  
 border: 0;  
 font-size: 1em;  
 line-height: 1em;  
}  
  
div#Rahmen {  
 width: 60%;  
 float: right;  
}  
  
div#Rahmen div {  
 clear: left;  
}  
  
ul#Navigation {  
 text-align: center;  
}  
  
ul#Navigation li {  
 list-style: none;  
 float: right;  
 position: relative;  
}  
  
* :first-child+html ul#Navigation li { /* Korrektur fuer den IE 7 */  
 margin-bottom: 0px; /* Abstand Button - unterer Rand Rahmen*/  
}  
  
ul#Navigation li ul {  
 position: absolute;  
 top: 16px;  
 left: 0px;  
 display: none; /* Unternavigation ausblenden */  
}  
  
* :first-child+html ul#Navigation ul { /* Workaround fuer den IE 7 */  
 padding-bottom: 0em;  
}  
  
ul#Navigation li:hover ul {  
 display: block; /* Unternavigation in modernen Browsern einblenden */  
}  
  
ul#Navigation li ul li {  
 float: none;  
 display: block;  
 margin-bottom: 0px;  
}  
  
ul#Navigation a {  
 display: block;  
 width: 6.4em; /* Breite den in li enthaltenen Elementen zuweisen */  
 padding: 0 1em;  
 text-decoration: none;  
 font-weight: bold;  
 border: 0px;  
 color: maroon;  
 background-color: #ccc;  
}  
  
ul#Navigation a:hover,ul#Navigation span,li a#aktuell {  
 border-color: black;  
 color: white;  
 background-color: gray;  
}  

~~~~~~html
  
</style>  
</head>  
<body>  
<div id="Rahmen">  
<ul id="Navigation">  
  
 <li><a href="#Beispiel">Seite 2</a>  
 <ul>  
  <li><a href="#Beispiel">Seite 2a</a></li>  
  <li><a href="#Beispiel">Seite 2b</a></li>  
 </ul>  
 </li>  
  
 <li><a href="#Beispiel">Seite 4</a>  
 <ul>  
  <li><a href="#Beispiel">Seite 4a</a></li>  
  <li><a href="#Beispiel">Seite 4b</a></li>  
  <li><a href="#Beispiel">Seite 4c</a></li>  
 </ul>  
 </li>  
  
</ul>  
<div></div>  
</div>  
</body>  
</html>  

Zum Weitertesten...

Gruß, Nils