I am currently working on implementing a new Bootstrap-based Design and have run into an issue. How can I create a fluid layout that fits the screen and only has one scrollable area for content?
I have tried setting the height of body, html, and all parent tags of the Content-div to 100%, with overflow:hidden, and then setting only the Content itself to overflow:auto. However, this solution did not work.
Do you have any ideas or suggestions on how to achieve this?
The design I am working on includes a fluid layout with three rows - a header (span2+span10), body (span2+span10), and footer (span12).
EDIT: Currently, I am using jQuery to resize the layout every time the window size changes, which is functional but not the most efficient solution. Any help would be appreciated!