M
Maik
Was meinst du mit "die Spalten in der richtigen Höhe auf den Bildschirm bekommen"?
Vielleicht schwebt dir auch dieses Modell vor?
Vielleicht schwebt dir auch dieses Modell vor?
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta name="author" content="michaelsinterface">
<title></title>
<style type="text/css">
<!--
html,body {
margin: 0;
padding: 0;
}
#header, #footer {
height: 50px;
background: #cacaca;
}
#spalte1 {
float: left;
width: 180px;
height: 320px;
margin-right: 0 !important;
margin-right: -3px;
padding: 70px 10px 10px 10px;
}
#spalte2 {
height: 320px;
overflow:auto;
margin: 0 0 !important;
margin 0 -3px;
padding: 70px 10px 10px 10px;
background-color:#F8DF9C;
}
#spalte3 {
float: right;
width: 180px;
height: 320px;
margin-left: 0 !important;
margin-left: -3px;
padding: 70px 10px 10px 10px;
}
-->
</style>
</head>
<body>
<div id="header">header</div>
<div id="wrapper">
<div id="spalte1">spalte 1</div>
<div id="spalte3">spalte 3</div>
<div id="spalte2">spalte 2</div>
</div>
<div id="footer">footer</div>
</body>
</html>