Ich habe ein Problem mit meiner Seite. Leider wird die Anweisung background: #000000 in #page nicht übernommen, keine Anung wieso. Meine .css sieht so aus:
Code
body {
margin: 0px;
padding: 0px;
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Helvetica, Arial, sans-serif; }
#header {
width: auto;
height: 35px;
background: #003366; }
#page {
width: auto;
height: auto;
background: #000000; }
#content {
width: 70%;
height: auto;
float: left; }
.post {
width: auto;
height: auto; }
#post h2 {
font-size: medium;
font-weight: bold;
color: #FF0000;
display: inline; }
.post p {
font-size: small;
font-weight: normal;
color:#FFFF00;
text-align: justify; }
.info {
width: auto;
height: auto; }
.info p {
font-size: small;
font-weight: normal;
color: #0000FF;
display: inline; }
.comment {
width: auto;
height: auto; }
#sidebar {
width: auto;
height: auto;
float: left; }
#sidebar ul {
margin: 0px;
padding: 0px;
list-style-type: none; }
#sidebar li a:link, #sidebar li a:visited, #sidebar li a:active, #sidebar li a:hover {
text-decoration: none;
color: #00FF33; }
#sidebar h2 {
font-size: medium;
font-weight: bold;
color: #FF0000;
display: inline; }
#sidebar h3 {
font-size: small;
font-weight: bold;
color: #0000FF;
display: inline; }
#sidebar p {
font-size: small;
font-weight: normal;
color: #FF3300; }
#footer {
width: auto;
height: 30px;
clear: both;
background-color:#00CC99; }
Alles anzeigen