I have created a three-column layout with div tags and I am now facing a problem.

Around the three columns, there is a wrapper-div that is also used as a background (color and border). In the very right column, there is dynamic content that overflows sometimes to the right. The problem is, when that happens, the wrapper-div does not expand and therefore the background is cut off.

http://wildmind.ch/css/stackoverflow

Any help is much appreciated.

Alex

link|improve this question
feedback

3 Answers

You cannot do this using DIVs and CSS only.

In ONLY CSS you have to use tables instead of DIV.

OTHERWISE use javascript (jquery) to calculate the whole size of your showing DIV elements and affect new width value to the main DIV wrapper.

link|improve this answer
feedback

if this was a "normal" layout width:auto would suffice, however as the poster correctly stated above, this can't be achived with your current layout. You need to use JQuery to allocate the total width first.

link|improve this answer
feedback

Update wrapper CSS -

overflow:hidden; /*This will work*/

or you need to check the height of 3 cols using jquery and find the greater one and set the height to its parent

<!--var col1 = $(".col1").outerHeight(); -->

$(this).parent.height(var);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.