Ich poste mal den quelltext, um den es mir geht.
Das "lpic"-div "verdeckt den "links"-div, obwohl er vorher im Quelltext steht.
<!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" xml:lang="en" lang="en">
<head>
<title>Hugo</title>
<style type="text/css">
<!--
html, body {
background-color:black;
color:white;
}
#container
{ position:relative;
height:500px;
}
#lpic {
position:absolute;
left:10px;
top:10px;
}
#links {
float:left;
width:450px;
overflow:hidden;
padding-bottom:10px;
}
#content {
min-height:300px;
overflow:hidden;
}
-->
</style>
</head>
<body>
<div id="container">
<div id="lpic"><img src="200-300.gif" alt="val"/></div>
<div id="logo1"></div>
<div id="content">
<div id="links">M1<br/>M1<br/>M1<br/>M1<br/>M1<br/>M1<br/></div>
Content
</div>
</div>
</body>
</html>