Prøv denne:
http://www.thenoodleincident.com/tutorials/box_lesson/boxes.htmlEller denne, jeg kan ikke huske hvor jeg har den fra:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>CSS-layout af websider, demoside 5</title>
<style type="text/css" media="screen">
html,body{hight:100%}
body {
background : #303030;
font-family : arial, verdana, sans-serif;
font-size: 14px;
margin-top : 10px;
margin-right : 20px;
margin-bottom : 10px;
margin-right : 20px;
padding : 0;
}
h1 {font-size:150%;margin-top:10px;margin-left:10px;}
#banner h1 {
margin : 0;
display: block;
margin-bottom : 10px;
color : #444;
background :#838383;
font-size : 24px;
line-height:100%;
border : 1px solid black;
padding-top : 5px;
padding-bottom : 5px;
padding-left : 10px;
border-right: 5px solid #505050;
border-bottom: 5px solid #505050;
border-top: 1px solid #505050;
border-left: 1px solid #505050;
}
#leftcol {
margin-top : 0;
width : 170px;
float : left;
background : #ddd;
border : 1px solid black;
height : 100px;
}
#indhold {
margin-top : 5px;
margin-bottom : 10px;
margin-left : 180px;
margin-right : 150px;
border : 1px solid black;
background : #ddd;
height : 395px;
}
#rightcol {
position:absolute;
right : 20px;
top : 56px;
width : 140px;
height : 100px;
border : 1px solid black;
background : #ddd;
}
#footer {
text-align : left;
}
#footer h1 {
color : #000;
background : #ddd;
border : 1px solid black;
padding : 5px 0px 5px 10px;
margin : 10px 0;
}
/*
#rightcol {
position : absolute;
right : 20px;
top : 10px;
width : 140px;
height : 350px;
border : 1px solid black;
background : #ddd;
}
#leftcol {
margin-top : 0;
width : 170px;
float : left;
background-color : #ddd;
border : 1px solid black;
height : 350px;
}
#indhold {
margin-top : 5px;
margin-bottom : 10px;
margin-left : 180px;
margin-right:160px;
border : 1px solid black;
background : #ddd;
height : 350px;
}
h1 {
margin-top:20px;
margin-right:auto;
margin-bottom:auto;
margin-left:20px;
*/
</style>
</head>
<body>
<div id="banner">
<h1>Banner</h1>
</div>
<div id="leftcol">
<h1>Menu</h1>
</div>
<div id="indhold">
<h1>Indhold</h1>
</div>
<div id="rightcol">
<h1>Submenu</h1>
</div>
<div id="footer">
<h1>Footer</h1>
</div>
</body>
</html>