Weird div overflow problem with borders on IE6
am 01.06.2007 07:01:50 von TazmanianD
Can someone explain to me why in the following fragment on IE6, "Outer
1" gets a yellow background? It appears that the size of the outer
div is being calculated incorrectly and it is overlapping content
following it. If you remove the border from the inner div or if you
remove the middle div, then the background gets rendered properly.
This looks like it's just a bug in IE6. It gets rendered properly on
Firefox. Does anyone know a good way to work around this. If I stick
a 1px border on the outer div, then the background renders properly
but I'd rather not have to do that.
Outer 1
Outer 2
Re: Weird div overflow problem with borders on IE6
am 01.06.2007 08:53:26 von rf
"TazmanianD" wrote in message
news:1180674110.904209.223920@g4g2000hsf.googlegroups.com...
> Can someone explain to me why in the following fragment on IE6, "Outer
> 1" gets a yellow background? It appears that the size of the outer
> div is being calculated incorrectly and it is overlapping content
> following it. If you remove the border from the inner div or if you
> remove the middle div, then the background gets rendered properly.
> This looks like it's just a bug in IE6. It gets rendered properly on
> Firefox. Does anyone know a good way to work around this. If I stick
> a 1px border on the outer div, then the background renders properly
> but I'd rather not have to do that.
>
>
> Outer 1
> Outer 2
Bug.
Same with IE7.
IE is very confused with many background/border combinations.
What's wrong with
?
Inner1
--
Richard.
Re: Weird div overflow problem with borders on IE6
am 01.06.2007 12:05:30 von jkorpela
Scripsit TazmanianD:
> Can someone explain to me why in the following fragment on IE6, "Outer
> 1" gets a yellow background?
It happens on IE 7, too, both in Quirks and in Standards mode.
> It appears that the size of the outer
> div is being calculated incorrectly and it is overlapping content
> following it.
Perhaps. But the following seems to fix the problem in Standards mode on IE
7:
div { overflow: hidden; }
Of course, such a setting is risky in general: it may hide actual content
from users.
> This looks like it's just a bug in IE6.
Yes. But for the best workaround, I think we need to know the _real_ page.
After all, you're surely not using nested DIVs just for the sake of nesting.
Maybe there's a way to avoid the nesting that triggers the bug.
--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/