Hi
Ich hab gerade ein großes Problem, ich bringe es nichtmal zusammen ein einfaches Layout richtig zu machen
Und zwar wird mein Content Bereich nicht angezeigt, ich hoffe ihr könnt mir helfen.
lg
Code:
Ich hab gerade ein großes Problem, ich bringe es nichtmal zusammen ein einfaches Layout richtig zu machen
Und zwar wird mein Content Bereich nicht angezeigt, ich hoffe ihr könnt mir helfen.
lg
Code:
HTML:
<!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=iso-8859-2" />
<title>Untitled Document</title>
<style type="text/css">
#container {
width: 800px;
margin: 0 auto;
}
#header {
width: 800px;
background-color: #000099;
height: 120px;
}
.navi-top
{
width: 800px;
background-color: #990000;
height: 30px;
}
#content {
width: 650px;
background-color: #666666;
margin-left: 150px;
}
.menu {
width: 150px;
min-height: 600px;
background: #000000;
float: left;
}
.clear {
clear: both;
font-size: 1px;
}
</style>
</head>
<body>
<div id="container">
<div id="header"></div>
<div class="navi-top"></div>
<div class="menu"></div>
<div id="content"></div>
<div class="clear"></div>
</div>
</body>
</html>