CSS: 100% percent height
I wanted a css design with 100% height for some recent project. The middle centered column should just fill the whole page in height without forcing scroll bars. But somehow its buggy on a few browsers. I found this hack in the web which works quite nice at first glance.
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
}
#content {
height: 100%;
}
Worked in Firefox, Opera, Safari, Webkit, will check for IEx later.