[EMAIL PROTECTED] schrieb:
would someone look at the following page and offer suggestions as to why the floating divs in the last two containers are crowding to the center?
http://www.studiokdd.com/pages/site-map.html
http://www.studiokdd.com/css/styles.css


Have a look at your clearfix rules:

.clearfix:after {content: "."; display: block; height: 0; clear: both; visibility: hidden;}
.clearfix {display: inline-table;}

/* \ */
* html .clearfix {height: 1%;display: block;}
/* */

and compare it with the original one:
http://positioniseverything.net/easyclearing.html
...
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

1) /* Hides from IE-mac \*/
uses the escape sequence, but you are escaping the whitespace
/* \ */
Can't test it in MacIE, so its just a guess, but I think its not hidden to MacIE.

2) The original serves display: block; to all but MacIE, but you are hiding display: block; from all but IE.

So, display:block will be wrong for MacIE, and display:inline-table will be wrong for Opera.

Ingo


______________________________________________________________________
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