I created a layout in CSS / HTML with the following structure:

Footer navigation scrolls horizontally to display two different screens. The contents of the screen are fixed in height and vertically centered, and the layout always fills the entire window.
Since my content has a fixed height, I need the browser to display a vertical scroll bar when the window reaches a certain height.
I also have several position:fixed <canvas> overlays that are cropped by <html> and <body> elements that are set to height:100%; width:100% height:100%; width:100% .
I was hoping that by setting min-height:700px to the <body> selector, I could get a scroll bar to appear when the window got too short. This does not seem to work.
How can I make this website full-screen in general, but scroll below the minimum threshold?
html css
Michael Forrest Dec 18 '11 at 9:59 a.m. 2011-12-18 21:59
source share