I have a question.
If I have 2x div elements inside a content div, like "left" and "right".
And I want the left div to have the width:250px;, and the right one with the width:auto;, so the right div fit the browsers window if I shrink it. Is this possible?
I have tried it and the right div jumps right under the left one, instead of being to the right.
.content {width:1000px;}
.left {width:250px;}
.right {width:auto;}