Tutorials Infos - Anleitungen - Hilfe - Dreamcodes
 

Css Menue

Ein Beispiel für ein Menue in Css
 
Script:
<html>
<head>
<style type="text/css">
<!--
body {
font-family:arial,sans-serif;
font-size:10pt;
}

div.cssmenu2 {
width : 150px;
}

div.cssmenu2 a {
background-color : #ccccff;
border-right : 5px solid #336699;
color : black;
display : block;
margin-top:3px;
padding-top : 2px;
padding-right : 5px;
padding-left : 5px;
padding-bottom : 2px;
text-decoration : none;
}

div.cssmenu2 a:hover {
background-color : #ffff99;
border-right : 4px solid #ff0000;
color : #dd0000;
}
//-->
</style>
</head>
<body>

<div class="cssmenu2">
<a href="index.html">Auswahl 1</a>
<a href="index.html">Auswahl 2</a>
<a href="index.html">Auswahl 3</a>
<a href="index.html">Auswahl 4</a>
<a href="index.html">Auswahl 5</a>
</div><br>

</body>
</html>

 
ID: 1610
eingestellt am: 03.04.2008
Autor: Keine Angabe
Status zum lesen: Gast
gelesen: 4411
Webseite: www.dreamcodes.com
[Drucken]