I need to achieve subject, and really got stuck. To better describe, I've put up a picture of what I need to get:

enter image description here

At first I've tried to do it with divs, but it looks completely different in Firefox due to width attribute. Although my primary concern is IE8 non-standard mode (that's requirement), I wanted it to look more or less decent in Firefox.

Then I tried to do it with two-column table, and it works well in IE and somewhat well in Firefox, but for some reason if the right column content gets wider than screen, table does not accomodate and my content is cropped horizontally by the table, no scrollbar is shown.

Also, looked at the earlier posts on Stackoverflow, with fixed container, but it doesn't seem to work in IE8 non-standard mode.

Would be glad to hear any ideas on how this could be done.

link|improve this question

72% accept rate
can you provide us a lil bit code what you have done so far? – Rito Nov 7 '11 at 12:05
Rito, here it is: pastebin.com/FuhEJj13. I did initial 100% height with JS which is not good, and for some reason I'm not able to reproduce content cropping for now... I even tried to change content width with JS (to simulate real conditions -- there's grid in place of "test-wide"), but still works on this small piece and doesn't on a big page. – Andy Nov 7 '11 at 12:58
What happens on a real page, is that innermost #content td gets wide enough to accomodate content (~6000px), but tr (and table) is cropped to screen width (~1000px). – Andy Nov 7 '11 at 13:02
feedback

2 Answers

May be you can do like this:

.left{
    float:left;
    position:absolute;
    width:200px;
    background:red;
    border:2px solid #000;
    top:200px;
    bottom:0;
    left:0;

}
.right{
    overflow:hidden;
    background:green;
    position:absolute;
    top:200px;
    bottom:0;
    left:204px;
    right:0;
    border:10px solid #000;
}

html, body{
    min-height:100%;
    height:100%;
}
.header{
    width:100%;
    height:200px;
    background:yellow;
}

Check this http://jsfiddle.net/QHTeS/

link|improve this answer
Please look at the picture: height of the header is not known – Andy Nov 7 '11 at 12:37
feedback

This should help - a very basic example.

http://jsfiddle.net/pRAgY/

Remember to adjust the width of the right container when you know the width, as the 6px border (totalling 24px) goes over the 100% width avalible.

link|improve this answer
Please look at the picture: 1) there're two borders of 6px; 2) columns should be 100% high or more (can grow). – Andy Nov 7 '11 at 12:35
Im working on this for you now, however, your objectives can be met with either example provided, with very little knowledge in CSS. – Graeme Leighfield Nov 7 '11 at 12:45
Like how (sorry, I'm not a CSS genius)? this is my main concern -- to get it 100% high, same height for both columns, and allow the whole thing to grow. It's no use in having two different-sized columns. – Andy Nov 7 '11 at 12:59
feedback

Your Answer

 
or
required, but never shown

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