Page 1 of 1

DIV breaking containers ONLY in IE8!

Posted: Mon Nov 09, 2009 7:14 pm
by oldnoisy
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:

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;
    
}
 
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!

Re: DIV breaking containers ONLY in IE8!

Posted: Mon Nov 09, 2009 10:33 pm
by superdezign
You have not provided a page for us to look at in order to help you. We can't solve visual HTML/CSS problems without something to look at, especially when what we are missing is the HTML. :P

Re: DIV breaking containers ONLY in IE8!

Posted: Tue Nov 10, 2009 3:18 pm
by oldnoisy
:roll: fixed the link

Re: DIV breaking containers ONLY in IE8!

Posted: Thu Nov 12, 2009 4:46 pm
by oldnoisy
I added this and it works. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />