DIV breaking containers ONLY in IE8!
Posted: Mon Nov 09, 2009 7:14 pm
Hey all, the test page is here. Notice when you expand the "view more details" in IE8 to the point where it is supposed to push the page down, it doesn't! But it does in IE7/FF/Safari.
http://www.muchomungo.com/CrowdTwist/pa ... gions.html
http://www.muchomungo.com/CrowdTwist/re ... /style.css
Potentially relevant CSS:
I'm using clearfix to make things work in IE7, but clearly there's some kind of other problem going on.
Thanks for any help!
http://www.muchomungo.com/CrowdTwist/pa ... gions.html
http://www.muchomungo.com/CrowdTwist/re ... /style.css
Potentially relevant CSS:
Code: Select all
body {
margin: 0;
padding: 0;
min-height:0;
}
div.container {
width:100px;
}
div.outerBody {
width:100%;
min-height:0;
}
div.innerBody {
width:100%;
background-image:url("../../images/artist_center/body_bg.jpg");
background-repeat:repeat-x;
min-height:0px;
height:auto !important;
background-color:#cedce5;
text-align:center;
margin: 0;
position:absolute;
}
div.tabContent {
width:945px;
min-height:596px;
border:solid 1px #cccccc;
float:left;
position:relative;
margin-left:14px;
padding-bottom:14px;
margin-bottom:14px;
}
Thanks for any help!