This question is locked. New answers and comments are not allowed.
Can't seem to figure out why this is happening. My website is based on the Grid960 layout method. Within each tab, I'm placing content within two divs that are floated left so the content appears side by side...one is 140px wide, the other is 700px wide. When I do this, the height of the tab content area doesn't cover my content...it shrinks up like there is not content in the tab. If I remove the float:left from the divs, then the tab content area covers my content.
I'm guessing this is CSS issue...I can see in the Computed Style that the height is getting set to 0. If I add a style entry
#tabStripName .t-content
{
min-height: 400px;
}
it resolves the issue. Can you point in the direction of a possible work-around to prevent the height from getting set to 0 when I define left floated divs in the tab content?
In brief, the layout looks somewhat like this
I'm guessing this is CSS issue...I can see in the Computed Style that the height is getting set to 0. If I add a style entry
#tabStripName .t-content
{
min-height: 400px;
}
it resolves the issue. Can you point in the direction of a possible work-around to prevent the height from getting set to 0 when I define left floated divs in the tab content?
In brief, the layout looks somewhat like this
<div class="grid_12"> <tabs> <tab1> <div class="grid_2"> CONTENT </div> <div class="grid_9"> CONTENT </div> </tab1> </tabs></div>