While using the generated CSS scaffolding as a start for working on my own CSS, I noticed the float clearing section for .tabs ul. That also explained why I had to clear the floats manually when using subtabs. Modifying that section to also clear .subtabs ul seemed to help.
.tabs ul, .subtabs ul {
/* float clearing */
overflow: hidden;
display: inline-block; /* Necessary to trigger "hasLayout" in IE */
display: block; /* Sets element back to block */
}
While using the generated CSS scaffolding as a start for working on my own CSS, I noticed the float clearing section for
.tabs ul
. That also explained why I had to clear the floats manually when using subtabs. Modifying that section to also clear.subtabs ul
seemed to help.P.S. Thanks for Tabulous!