IE6 Overflow Issue
Posted
by Nimbuz
on Stack Overflow
See other posts from Stack Overflow
or by Nimbuz
Published on 2010-03-15T10:53:00Z
Indexed on
2010/03/15
22:29 UTC
Read the original article
Hit count: 183
<div style="float:left; width:50%;">
div 1
<div style="position:absolute; width:105%">nested element</div>
</div>
<div style="float:left; width:50%;">
div 2
</div
If an element exceeds the width of its floated parent element, the next element is pushed down unless I apply overflow:hidden
on both floated elements, which defeats the purpose because I DO NOT want to hide the overflowing content. Is there any fix for it?
© Stack Overflow or respective owner