• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

[ERLEDIGT] Div-container werden nicht angezeigt

theplatters

Neues Mitglied
Hey!

Ich versuche mir selbstständig CSS und HTML beizubringen, doch ich sehe mich mit einem Problem nicht mehr herraus:

HTML:
<html>
<head>
<title>Seite</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>

<body>
    <div id="website">
        <div id="header">
          <h1> Test</h1>
        </div>
   
  
   
        <div id="main">
            <div id="menue">
           
            </div>
           
           
            <div id="fenster">
           
           
            </div>
        </div>
<div id="footer"></div>
</div>
</body>
</html>

Code:
body {
background-color: #FFC4C7;
text-align: center;
}

#website {
    width: 980px;
    margin:0 auto;
}

#header {
widht: 980px;
height: 150px;
background-color: #FF00ED;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;   
}

#header h1 {
    padding-top: 50px;
    font-size: 60px;
    font-weight: bold;
    color: white;
    font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
}

#main {
widht: 980px;
height: 600px;
background-color: #DC0000;
}

#menue
{
float: left;
widht: 200px;
height: 300px;
background-color: #A5FF80;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;   
}

Der menue-div wird nicht angezeigt obwohl ich den Code schon gefühlte 10 mal kontrolliert habe.
In diversen Foren las ich über dieses Problem, die Lösung war aber immer eine andere

Ich würde mich sehr über eine Antwort freuen.

LG theplatters.
 
Code:
widht: 200px;
Wird "width" geschrieben und nicht widht. ;P Bei #menue, #main und #header.
 
Zurück
Oben