Yes you read right... I have stumbled on a little trick
of how to create a min-height style work across the main browsers. Its
so simple I had to blog about it, as I can't believe everyone has been
trying to create all sorts of hacks for IE6 and this little beauty has
been sitting there all along.
selector {
min-height:500px;
height:auto !important;
height:500px;
}
That's it.. Obviously just change the min-height & height to your specific value. Enjoy..