PHP interesse |
|
Hallo,
Ik ben bezig met een layout maar nu probeer ik een menuutje te maken. daarmee heb ik nu:
.menu {
float: right;
height: 30px;
}
.menuitem ul, .menuitem ul li {
list-style-type: none;
display: inline;
padding: 0;
margin: 0;
height: 30px;
}
.menuitem {
padding: 0;
height: 30px;
text-align:right;
}
.menuitem ul li a {
white-space: nowrap;
color: #ffffff;
height: 30px;
text-decoration: none;
font-size: 16pt;
font-family: Verdana;
background-image: url(img/menu.gif);
}
.menuitem a:hover {
color: #ffffff;
background-image: url(img/menu_over.gif);
height: 30px;
font-size: 16pt;
font-family: Verdana;
}
.menu { float: right; height: 30px; } .menuitem ul, .menuitem ul li { list-style-type: none; display: inline; padding: 0; margin: 0; height: 30px; } .menuitem { padding: 0; height: 30px; text-align:right; } .menuitem ul li a { white-space: nowrap; color: #ffffff; height: 30px; text-decoration: none; font-size: 16pt; font-family: Verdana; background-image: url(img/menu.gif); } .menuitem a:hover { color: #ffffff; background-image: url(img/menu_over.gif); height: 30px; font-size: 16pt; font-family: Verdana; }
dit werkt behalve 1 ding. de hoogte doet het niet. ik krijg de hoogte van de link zelf ik wil dat de hoogte 30px is. hoe doe ik dat?
|