3-column div layout: fixed - fluid - fixed

I am trying to build a three-column layout that has one fixed column on the left, a liquid column in the middle, and another fixed column on the right.

Has anyone seen this?

There are similar issues here, but not the solution I was looking for. CSS Layout 2-Column fixed-fluid

+8
html css liquid-layout
source share
2 answers

Use a fixed width and float on the corresponding side in the left and right columns. Then set the right and left margins of the fluid div to the width of the fixed divs. The fluid div should follow fixed in html.

+1
source share

All Articles