I am trying to make a layout with three columns that fills the entire window. The middle column should be centered in the page and have a fixed width (in pixels, not percentage). The left and right divs should be equal in width but their width would vary with the remaining window width.
Here is the Html:
<div id="wrapper">
<div id="left">
left content
</div>
<div id="middle">
middle content
</div>
<div id="right">
right content
</div>
</div>
Is there a way to do this layout with just CSS (no JavaScript)? If not is it possible to do it with tables?
Here is a couple links I have found so far with three column layouts. None offer the constraints I need.
http://www.dynamicdrive.com/style/layouts/category/C10/
http://matthewjamestaylor.com/blog/perfect-3-column.htm
Thanks in advance for your help.
Edit:
More specifically I would like the following to hold: (values in pixels)
middle.width = 500
left.width = right.width = (window.width <= 500) ? 0 : (window.width - 500) / 2;
Edit:
Here is a JavaScript solution:
window.onresize = function() {
var width = ((window.innerWidth - 500) / 2) + "px";
document.getElementById("right").style.width = width;
document.getElementById("left").style.width = width;
}