Quote:
|
If I fix it by floating the div, the text box stays put, but IE5 and IE6 insert an extra 150px margin:
|
That's because if you're putting a 150px margin in that is in the same direction as the float, ie. float:left with a left margin, then IE 6 and below will DOUBLE that margin. The fix for that is to use conditional comments to call an 'ie only' css file JUST for the 'fixes' you need and add display:inline to the properties for that div. That will stop the doubled-float margin bug.
__________________
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
|