I would like to do this simple layout:
- 3 columns with left and right position:fixed because when scroll down, left and right supposed to stay still
- We know left column
width = 200px - We know middle column
width = 400px - We DON'T know right column width and it should be fluid (i.e. fill in rest of the screen width OR zero)
This is the sample I have (but with col3's width as 100px). So the question is how to fix css of col3 to make it fluid but still reserve position:fixed?
My last alternative is to use jQuery. But I don't want to touch it unless really necessary for layout.
Thanks.