Follow me on twitter @yodasmydad
Ahhhh #Fringe can't finish like that!! Latest Tweet:

Hey I'm Lee. My blog was put up to house my strange thoughts, ramblings, nuggets of information I can refer back to and document my learning curves on new dev stuff like Umbraco v5 and other .NET related things.

All thoughts and comments on here are my own, and in no way reflect my employer - I also take no responsibility for spelling, grammar or terminology, so read at your own risk!

Blogs I Read

Sites I Like

CSS Min-Height In IE6 and all Browsers!

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..

Back to top