hvis følgende virker er fejlen at du ikke har afsluttet dine divs:
<?xml version="1.0" encoding="iso-8859-1"?>
<!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>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
#Logo {
position:absolute;
top: 5px;
left: 5px;
z-index: 1;
}
#Top {
position:absolute;
top: 100px;
left: 565px;
z-index: 2;
}
#Menu {
position:absolute;
top: 140px;
left: 10px;
z-index: 3;
}
#Bund {
position:absolute;
top: 600px;
left: 300px;
z-index: 4;
}
</style>
<link href="style" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
@import url(style.css);
-->
</style>
</head>
<body>
<div id="Logo"> <img src="../V1/Billeder/left_zeo.jpg" width="110" height="110" border="0"></div>
<div id="Menu"> <p>Menu :</p>
<p>1</p>
<p>2</p>
<p>3</p>
<div id="Top"> Top
<div id="Bund"> Bund
</div>
</body>
</html>
<div id="Menu"> og <div id="Top"> var ikke afsluttet med </div>, som de bør være.