Hallo zusammen,
ich versuche gerade mittels HTML und CSS eine Webseite zu erstellen.
Für das Layout wollte ich gerne das Box-Modell nutzen.
Mein bisheriger Code sieht wie folgt aus, das Problem ist das die graue Box unter der roten Box ist obwohl sie daneben sein soll.
CSS:
HTML:
ich versuche gerade mittels HTML und CSS eine Webseite zu erstellen.
Für das Layout wollte ich gerne das Box-Modell nutzen.
Mein bisheriger Code sieht wie folgt aus, das Problem ist das die graue Box unter der roten Box ist obwohl sie daneben sein soll.
CSS:
Code:
@charset "UTF-8";
/* CSS Document */
#center{
margin:1em auto;
width:601px;
height:480px;
}
#header {
position:relative;
left:0x;
top:0px;
width:600px;
height:40px;
background-color: #ff0;
}
#menu {
position:relative;
left:0px;
top:0px;
width:225px;
height:200px;
background-color: #f00;
}
#content {
position:inherit;
left:0px;
top:0px;
width:375px;
height:200px;
background-color: #999;
}
#footer {
position:relative;
left:0px;
top:0px;
width:600px;
height:40px;
background-color: #ffff00;
}
HTML:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>08.06.2011</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="center">
<div id="header">header</div>
<div id="menu">menu</div>
<div id="content">content</div>
<div id="footer">footer</div>
</div>
</body>
</html>