the following code is dislpayed differently in IE anf firefox ...........
pls help ....i want both to look alike
<head>
<title>TWO-COLUM absolute LAYOUT WITH absolute BOXES</title>
<style type="text/css">
<!--
#id0 {
background-color: #dae9ff;
width: 92.50%;
height: 20.33%;
margin-left: 2.50%;
margin-top: 1.33%;
position: absolute;
}
#id1 {
background-color: #dae966;
width: 20%;
height: 66.67%;
margin-left: 2.50%;
margin-top: 14.5%;
position: absolute;
}
#id2 {
background-color: #dae960;
width: 72%;
moz-width:78%;
height: 66.67%;
margin-left: 23%;
margin-top: 14.5%;
position: absolute;
}
-->
</style>
</head>
<body>
<div id="id0">Header Section</div>
<div id="id1">Left Section</div>
<div id="id2">Content Section</div>
</body>
</html>