Lid |
|
Hallo,
hieronder staan 2 css codes, het eerste voor een verticaal navigatiemenu en het tweede moet er precies hetzelfde uitzien qua opmaak maar dan als horizontaal navigatiemenu.
Nu dacht ik dat je voor een horizontaal navigatiemenu enkel "display: inline;" moest toevoegen. Dat heb ik ook gedaan maar dan stond het nog niet juist. Als ik ook "display:block;" verwijderde in de CSS code van het horizontale menu stond het menu wel horizontaal.
Hoe komt dat eigenlijk?
// CSS voor een verticaal navigatiemenu
<style type="text/css">
#menu{
font-family: Verdana, Arial, Sans-serif;
width: 10em;
}
#menu ul {
list-style-type: none;
}
#menu li {
margin-top: 0.5em;
background-color: #ace5cd;
}
#menu ul li a{
display:block;
text-decoration: none;
width: 6em;
border-bottom: 1px solid transparent;
}
#menu ul li a:hover{
color: red;
}
</style>
<style type="text/css"> #menu{ font-family: Verdana, Arial, Sans-serif; width: 10em; } #menu ul { list-style-type: none; } #menu li { margin-top: 0.5em; background-color: #ace5cd; } #menu ul li a{ display:block; text-decoration: none; width: 6em; border-bottom: 1px solid transparent; } #menu ul li a:hover{ color: red; } </style>
// CSS voor een horizontaal navigatiemenu
<style type="text/css">
#menu{
font-family: Verdana, Arial, Sans-serif;
}
#menu ul {
list-style-type: none;
}
#menu li {
display: inline;
margin-top: 0.5em;
background-color: #ace5cd;
}
#menu ul li a{
text-decoration: none;
width: 6em;
border-bottom: 1px solid transparent;
}
#menu ul li a:hover{
color: red;
}
</style>
<style type="text/css"> #menu{ font-family: Verdana, Arial, Sans-serif; } #menu ul { list-style-type: none; } #menu li { display: inline; margin-top: 0.5em; background-color: #ace5cd; } #menu ul li a{ text-decoration: none; width: 6em; border-bottom: 1px solid transparent; } #menu ul li a:hover{ color: red; } </style>
|