Well, with any cross-browser element we have to account for degrading purposes, or faulty code (forget to close a statement, or something, for example)
Also, for IE and this to get along you need to use the conditionals. Not my favorites of choice, but it works:
Older versions of Internet Explorer don't understand the min-height property but lucky for us the normal height property behaves exactly the same way in these old Microsoft browsers, that is, it will stretch to 100% height of the viewport but if the content is longer it will stretch even further. We simply expose this 100% height rule to Internet Explorer only by using IE conditional comments. View the source on the demo to see how this is done.
also try adding media="screen" in your CSS call..
Code:
link rel="stylesheet" href="http://www.daily-chronicle.com/art/gray.css" type="text/css" media="screen">
Bookmarks