Hi Paul O'B. I believe mine has a much simpler way but I do not know whether it works in the older versions of IE or not because I have limited browsers for testing purposes.
Here's the file: http://www.snecx.com/temp/height.html
CSS used are:
Code:
html, body {
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
}
html > body {
overflow: visible;
}
body #layout {
margin: 0 auto;
padding: 0;
height: 100%;
min-height: 100%;
}
body > #layout {
height: auto;
}
And the HTML should be as simple as:
Code:
<html>
<head> ... </head>
<body>
<div id="layout">
contents...
</div>
</body>
</html>
I'm working on a way to make a 3 column stretch without using any background-image and without a footer, just 3 column stretch down to the page (seems quite impossible to me for now).
University is taking my time, lol.
Oh yeah, my layout just works to provide a single DIV that has effect similar to the follow:
Code:
<table height="100%">
<tr>
<td>contents</td>
</tr>
</table>
Bookmarks