Guten
Ich habe ein Problem.
Ich habe mir einige div´s erstellt und nu hapert es an den Boxen die ich setzten möchte
(Bild dazu hier was ich meine
Meine Frage an euch:
Auf den Bildern sind 2 Boxen eine weiße und eine Blaue
Wie kann ich die Blaue nun in die Weiße Box positionieren?
Mein CSS Code ist der:
Code
#Background{width:980px;height:980px;background:white;border-radius:10px;-moz-border-radius:10px;-o-border-radius:10px;}
#main{width:960px}
#menue//das ist die Blaue Box
{
float:centre;
width:960px;
height:100px;
background:#99B2E5;
margin-top:0px;
margin-left:10px;
margin-button:10px;
border-radius:10px;
-moz-border-radius:10px;
-o-border-radius:10px;
}
Alles anzeigen
dazu noch der HTML Code
HTML
<html>
<head>
<title>Bubu</title>
<link rel="stylesheet" type="text/css" href="code.css">
</head>
<body>
<div id="Website">
<div id="Background">
<h1>Palim</h1>
</div>
<div id="main">
</div>
<div id = "menue">
</div>
<div id="footer">
</div>
</div>
</body>
</html>
Alles anzeigen
Ich hoffe, das einer eine Idee dazu hat