biraz düşündümde bu havuz örneği biraz saçma sanırım... şöyleki verdiğin örneğe göre divlerin hepsinin z-indexlerini aynı verirsek containerin boyunun içindeki kutucuklardan boyu en yüksek olanla eşitlenmesi gerekirdi. Explorer düzgün gösterirken Firefox yine containerin boyutunu eşitlemiyor. bence firefoxun bir hatası...
Kod:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//TR" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<head>
<meta http-equiv="Content-Type" content="text/HTML; charset=iso-8859-9">
<title>Untitled Document</title>
<style type="text/CSS">
<!--
#container {
width: 650px;
margin-right: auto;
margin-left: auto;
background-color: #CCCCCC;
z-index: 1;
}
#header {
font-family: "Trebuchet MS";
width: 450px;
float: left;
z-index: 1;
}
body {
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
}
#logo {
width: 200px;
float: left;
z-index: 1;
}
-->
</style>
</head>
<body>
<div id="container">
<div id="logo"> logo
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="header"> header
<p> </p>
<p> </p>
</div>
</div>
</body>
</HTML>