IE6 Image Size Causes Float Wrap - Livekick Homepage
Jun0
The Livekick homepage suffers from a common problem in IE6. Floats are getting wrapped incorrectly due to IE not clipping the image to its containers width. IE6 renders the Aerosmith thumbnail as its entire width, even though that causes the containing div, which has width=129px, to expand to fit it. The code looks like this
<div id=’divHotToursTiles’>
<div class=’tile’>SNIP</div>
<div class=’tile’ style=’width: 129px’>
<div>
<a><img></img></a>
</div>
<div class=’tile’>SNIP</div>
<div class=’tile’>SNIP</div>
</div>
The fix for this is relatively simple. Just add “overflow: hidden;” to the tile class to prevent IE6 from forcing the image’s parent div to expand.
Float Drop Issue in IE6 - Bing Travel
Jun1
Microsoft’s new Bing brand, which is basically rebranded Live, which used to be MSN Search, launched a couple weeks ago. You’d think that MS would have been very diligent to cross-browser test their pages, however, Browsera detected some unsightly layout issues occuring in IE6.
The first is on the Bing Travel page. You can see that the “search hotels too” radio button is misplaced in IE6. Here is Browsera’s detection on the float drop on the Bing Travel page.
This problem appears to be caused in Internet Explorer 6 by the <div class=”clearAll”> inside the <div class=’submitButton’> not having an explicit width and thus expanding to 100%. Applying style
width: ‘1px’
to that clear div fixes the problem and pulls the radio button into the right spot in IE6.


