Anyone got this to work on a parent, cross-browser, as a way to avoid using an extra clearing div after floated elements? Read a lot about it, but I always end up having to use the clearing div.
I always try to use the best methods of clearing first, in this order:
1) a simple clear:both on a sibling element that appears directly after the floats (obviously only if such an element exists).
2) this overflow:hidden/auto one
3) the clearfix class (http://www.webtoolkit.info/css-clearfix.html)
.
.
.
.
.
.
4) if none of those are working out, only then do I resort to an extra clear div - only ever ran into this issue once, and then it was just for IE where i used conditionals.