A couple of things I see:
1 - XHTML 1.1 is not fully supported, so you really should drop back to 1.0
2 - you have a syntax error here:
Quote:
|
<div id="apDiv8" class"style1">
|
Should be <div id="apDiv8" class="style1">.
3- your #container isn't 'containing' anything because you have not cleared your floats. Add overflow:auto; to #container - and read our stickies on clearing floats.
4- z-index does nothing unless used in conjunction with absolute or relative positioning.
5 - min/max width and height is not supported by IE6. You will need to feed IE a fixed width/height in order to compensate - Use conditional comments and a separate css file to do it.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
Last edited by LadynRed; 04-08-2009 at 03:54 PM..
|