Hi guys, I have a header that I want to split into two parts (left & right). I want the right side to be exactly 400px and the left side to auto adjust, depending on the client window size. So far I have a header container set to 100% width and left/right containers within that. I have specified right cont as 400px and the left comt to be auto. But, the left container is only adjusting to the width of the content (not the width of the remainder of the screen). Any ideas how I can achieve what I am after? Thanks in advance!
Perhaps 2 choices: Use table (not necessarily a HTML table element) Use following style: #left{ width: auto; background-color: blue; } #right{ float: right; width: 400px; background-color: red; } HTML: But the latter requires #right to be declared first: <div id="right">right</div> <div id="left">left</div> HTML: