What's the best way to make an element of 100% minimum height across a wide range of browsers ? In particular if you have a layout with a header and footer of fixed height how do you make the middle content part fill 100% of the space in between with the footer fixed to the bottom ?
|
feedback
|
|
I am using the following one: CSS Layout - 100 % height Works fine for me... | |||||||
feedback
|
|
kleolb02's answer looks pretty good. another way would be a combination of the sticky footer and the min-height hack | |||
|
feedback
|
|
A pure CSS soultion ( #content { min-height: 100%; } ) will work in a lot of cases, but not in all of them - especially IE6 and 7. Unfortunately, you will need to resort to a javascript solution in order to get desired behavior - this can be done by calculating the desired height for your content div and setting it as a CSS property in a function:
You can then set this function as a handler for onLoad and onResize events:
| |||
|
feedback
|
|
To set a custom height locked to somewhere: CSS---------------
HTML--------------
| |||
|
feedback
|
|
You can try this: http://www.monkey-business.biz/88/horizontal-zentriertes-100-hohe-css-layout/ That's 100% height and horizontal center. | |||||
feedback
|
|
just share what i've been used, and works nicely
| |||
|
feedback
|
|
Try this:
The div element bellow the content div must have | ||||
|
feedback
|