OpenRoad + Mod7
Two pioneering organizations, together at last.
OpenRoad is pleased to announce the acquisition of creative agency Mod7.
Read the letter from our PrincipalOpenRoad + Mod7
OpenRoad is pleased to announce the acquisition of creative agency Mod7.
Read the letter from our PrincipalPosted on July 10, 2006 in Design by Mod7
Thank you. This page has a less crappy hack for the IE min-height bug:
http://www.webcredible.co.uk/user-friendly-resources/css/more-css-tricks.shtml
Yes, it's still a hack, but it's sooooo less horrible that some of those "prop DIV" solutions, which are basically a valid CSS/XHTML way to bring back the single-pixel-GIF trick.
Here it is in a nut shell:
.rbox.content {
height:200px;
margin:0px 10px 0px 10px;
overflow:inherit;
}
html>body.rbox.content
{
height: auto;
margin:0px 10px 0px 10px;
min-height:200px;
overflow:inherit;
}
The second style is ignored by IE because of the child selector (>). Of course, once IE 7 is released, this might be fixed. So then it's backward-compatible...