Forum Moderators: not2easy
[webmasterworld.com...]
...which is to have two divs side by side in IE Mac. (other browsers worked just fine using floats). Tables woulda probably been faster, but once I started I wanted to see it work!
<div class="item">
<div class="pic">IMAGE floats left</div>
<div class="description">TEXT aligns to right of image</div>
</div>
/*\*//*/
@import "ie5mac.css";
/**/
Place this mac hack in a <style> tag in your html to bypass your main style sheet.
Then play with negative margins to position the divs where floats don't float on de mac.
.item {width:500px; clear:left;}
.pic {float:left; display:inline;}
.description {text formatting stuff here}
what worked on IE Mac
.item {width:500px; clear:left;}
.pic {nothing here}
.description { margin: -50px 0px 0px 50px; display:block; padding:5px; plus text formatting stuff;}