Is there a way to setup a layout so that the header is 50px, body is 100% and footer is 50px?
I would like the body to use up the entire viewing area at minimum. I would like to have the footer and header to be on the screen at all times
|
Is there a way to setup a layout so that the header is 50px, body is 100% and footer is 50px? I would like the body to use up the entire viewing area at minimum. I would like to have the footer and header to be on the screen at all times |
|||||||
|
|
I created an example in jsfiddle: HTML:
CSS:
Without border-box the content will be height 100% + 140px padding. With the border-box the content height will be 100% and the padding will be inside. |
|||||||
|
|
Just a fix for Andreas Winter solution: *With the solution of it, you would have problems if the content is greater than the available window area. |
|||
|
|
|
I think what you're looking for is "multiple absolute coordinates". A List Apart has an explanation here but basically, you just need to specify the body's position as absolute, and set both
http://www.spookandpuff.com/examples/absoluteCoordinates.html shows the technique in a prettier way. |
|||
|
|