i have a layout based on divs like this:
<div id="master">
<div id="header">Header</div>
<div id="menu">Menu</div>
<div id="content">Content</div>
<div id="footer">Footer</div>
</div>`
All vertical aligned.
HTML, body height is 100% same goes for master div. when i set content div to 100% it expands and gives me scroll bar.
My goal is to get content div to fill out the rest. putting footer to bottom and header & menu on top.
I cannot seem to achieve this.
any help?