I want to create a very simple liquid layout with 2 columns - the one to the left will have a fixed width, and the one to the right will be dependent to the window size.
The best method to have two/more columns in a layout is:
HTML
LEFT
RIGHT
CSS
div#left{
float:left;
width:200px;
min-height: 400px;
background-color: magenta;
}
div#right{
margin-left: 210px;
min-height: 400px;
background-color: yellow;
}
take a look here
EDIT: