| Can someone tell me why firefox sees it necessary to inturpret the following simple CSS wrongly? im using absolute positioning to layout a site (as another method FF didn't like either) ---------------------- css codes: #top_home{ position:absolute; top: 11px; left: 5px; padding:0px; } #mid_home{ position:absolute; top: 40px; left: 5px; padding:0px; } .homemidleft{ background-image:url(images/left.gif); background-repeat:none; width:446; height:429; margin:0px; float:left; } .homemidright{ background-image:url(images/right.gif); background-repeat:none; width:333px; height:429; margin:0px; float:left; } ---------------------------- html <div id="top_home"> some stuff in here </div> <!-- End Top --> <div style="clear:both; "></div> <!-- middle --> <div id="mid_home"> <div class="homemidleft"> <p>test</p> </div> <div class="homemidright"> <p>test</p> </div> <div style="clear:both; "></div> </div> <!-- End middle --> some footer etc here -------------------------------------- will greatly appreciate any help you can give
|