I have created a HTML page with three section. One header at the top, two a table at the middle and a footer at the bottom. All the three is defined in three divs. The Header is fixed at the top using the css property ( top:0px; position:fixed;), likewise the footer is fixed at the bottom using css property (bottom:0px position:fixed;).
The table have to be fixed in between the header and footer in all conditions, ie when the browser is zoomed in or zoomed out the table have to be fixed between the header and footer.
To be more specific the top of the table have to stick to the bottom of the header and the bottom of the table have to stick to the top of the footer, I think the table have to exhibit some fluid property.Is there any thing like that.
Can anyone help?