Georg,
I'm still getting a problem with the area under the tabs, IE is
showing about 25px of the content background (con-cen) above the top
content curve (con-top)
In other words, the con-top div is looking to be 25px or so under con-
mnu.
Bob Schwartz wrote:
http://www.fgtestserver.net/rain/index.html
The other problems in IE6 are related to the "white-space bug" and
IE's
need for 'Layout'.
#outerWrapper, #innerWrapper {height: 1%;}
...will act as 'hasLayout' triggers where necessary.
The "white-space" bug is caused by empty elements, which IE/win
interprets to have a space. That space is consequently given
line-height, and IE6 doesn't respect declared dimensions so the
elements
get "spaced out".
The easiest way to fix that bug-combination is to eliminate the
"emptiness" by placing an HTML comment inside empty elements - tightly
with no space at either side, like so...
<div id="con-top"><!-- --></div>
Repeating that on _all_ _empty_ elements makes IE/win understand that
there isn't any space for its bugs.
Result - which I of course have tested for your page - is near perfect
rendering in IE6 compared to other browsers.
You do have the 'overflow: hidden' alternative for that "white-space"
bug - forcing IE6 to respect declared dimensions. However, that
solution
may hide too much in some cases, and I didn't bother to test it for
your
layout.
regards
Georg
--
http://www.gunlaug.no
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************