Hallo, ich habe ein Problem:
Ich code gerade eine Site, deren Layout komplett aus CSS bestehen soll. D.h. mit divs. Nun habe ich aber ein Problem: Ich wollte ein doctype für die Site festlegen, aber mit einem doctype wird sie nicht mehr richtig angezeigt. Die Navigation wir komplett anders dargestellt, zum Beispiel funktioniert "display:block" oder "list-style:none" oder der hover effekt nicht mehr. Kann mir jemand da helfen? Entweder brauche ich einen doctype oder einen anderen css code.
Ist hier vielleicht ein Fehler drin?
Code
body {
font-family:arial;
background-color:#8b0000;
}
#fixiert {
background-color:white;
width:150px;
top:30px;
left:30px;
position:absolute;
border:1px solid white;
}
#Navigation {
font-size:15px;
margin:0px;
padding:5px;
}
#Navigation li {
list-style:none;
margin:0;
padding:1px;
}
ul#Navigation a {
display:block;
padding:1px;
border:1px solid #8b0000;
}
ul#Navigation a:link {
color:white;
background-color:#8b0000;
}
ul#Navigation a:visited {
color:white;
background-color:#8b0000;
}
ul#Navigation a:hover {
color:#8b0000;
background-color:white;
}
ul#Navigation a:active {
color: white;
background-color:#8b0000;
}
#text {
background-color:#ffffff;
margin-left:200px;
margin-top:10px;
border:0px;
}
#header {
background-color:black;
font-size:30px;
font-weight:bold;
text-align:center;
height:60px;
border:0px;
}
#footer {
margin:500px 0 0;
border:0px solid;
background-color:white;
color:black;
}
Alles anzeigen
Danke
Gamling