Her får du lige koden, så kan du evt. selv se hvad problemet er...
<!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>
<title>UA2</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="Ymer">
<div id="staticTop">
staticTop
</div>
<div id="mainShowcase">
mainShowcase<br />
line 2<br />
line 3
</div>
<div id="leftColumn">
leftColumn<br />
line 2
</div>
<div id="bottomLine"></div>
</div>
</body>
</html>
CSS:
/* Statiske */
body{
margin:10px;
padding:0px;
background-color:#415e85;
}
#Ymer{
position:relative;
margin:0 auto;
width:870px;
background-color:#ffffff;
padding:5px;
z-index:1;
border-style:solid;
border-width:1px;
border-color:#232323;
}
#staticTop{
position:relative;
width:870px;
height:50px;
background-color:green;
padding:0px;
z-index:5;
}
#leftColumn{
position:relative;
width:180px;
margin-top:10px;
background-color:red;
z-index:10;
}
#mainShowcase{
position:relative;
width:680px;
float:right;
margin-top:10px;
left:0px;
background-color:blue;
z-index:15;
}
#bottomLine{
position:relative;
}