ich hab mir ein ganz einfaches drei spalten layout gemacht:
css:
Code: Alles auswählen
#header {
width: 100%;
float: middle;
border: dashed 1px #999;
margin-bottom: 10px;
}
#menu {
width: 10%;
float: left;
border: dashed 1px #999;
margin-right: 10px;
}
#main {
width: 88%;
float: left;
border: dashed 1px #999;
margin: 0px;
overflow: auto;
}
Code: Alles auswählen
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<div xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="./1.css" />
</head>
<body>
<div id="header">
blup
</div>
<div id="menu">
<?php include ("./menu.html"); ?>
</div>
<div id="main">
blup
</div>
</body>
</html>
schonmal danke für eure hilfe