There are various problems with your file, as far as IE mac goes:
1/ the hack you use to serve the float on wrapper to old IE 5 win - IE Mac fails to recover and sees the float property
2/ the filter you use on the ruleblock
#header /* */, #footer /* */ {
    margin: 0 auto;
}
IE Mac ignores those rules (the explanations on dithered.com are just wrong [1]. Solution, delete those empty comments, just do #header, #footer { ...}

Are you sure you are talking about IE 5.2 Mac. That filter works on my version of IE 5.2 Mac

3/ For IE mac, you set the #wrapper to display:inline-block. This means it is still an *inline* element and cannot be centered by the use of margin:auto. Instead, use {text-align:center} on the parent block (the body in your case).

Text align center does not work as i stated in the original post.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to