Hey Leute ich habe ein Seite programmiert mit einer Menübox die so aussieht:
und hier der CSS-Code dazu:
also an sich funktioniert alles Problemlos aber durch das Padding in der Titel-DIV wird die Hintergrundfarbe nicht durchgehend angezeigt könnt ihr mir da weiterhelfen?
Danke schonmal!
Code:
<div class="menuebox">
<div class="titel">
Menü
</div>
<div class="inhalt">
<ul>
<li><a href="index.php?section=home">Home</a></li>
<li><a href="index.php?section=news&page=1">News</a></li><li><a href="index.php?section=impressum">Impressum</a></li>
</ul>
</div>
</div>
Code:
#links {
width: 150px;
float: left;
font-family: Verdana;
font-size: 10px;
color: #D4E5DB;
margin: 0em 0em 0em 1em;
border-width: 1px;
border-style: solid;
border-color: #CCCCCC;
padding: 0em 0em 1em 1em;
}
#mitte {
width: 69%;
float:left;
margin: 0em 0em 0em 1em;
border-width: 1px;
border-style: solid;
border-color: #CCCCCC;
padding: 0em 0em 1em 1em;
}.titel {
font-family: Franklin Gothic Medium;
color: #000000;
background-color: #E6E6E6;
font-size: 175%;
border-width: 0px 0px 1px 0px;
border-style: solid;
border-color: #CCCCCC;
}
.inhalt {
padding: 1em 0em 0em 0em;
}
Danke schonmal!