DIV breaking containers ONLY in IE8!

HTML, CSS and anything else that deals with client side capabilities.

Moderator: General Moderators

Post Reply
oldnoisy
Forum Newbie
Posts: 12
Joined: Sat Sep 12, 2009 7:49 pm

DIV breaking containers ONLY in IE8!

Post 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!
Last edited by oldnoisy on Tue Nov 10, 2009 8:13 pm, edited 2 times in total.
User avatar
superdezign
DevNet Master
Posts: 4135
Joined: Sat Jan 20, 2007 11:06 pm

Re: DIV breaking containers ONLY in IE8!

Post 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
oldnoisy
Forum Newbie
Posts: 12
Joined: Sat Sep 12, 2009 7:49 pm

Re: DIV breaking containers ONLY in IE8!

Post by oldnoisy »

:roll: fixed the link
oldnoisy
Forum Newbie
Posts: 12
Joined: Sat Sep 12, 2009 7:49 pm

Re: DIV breaking containers ONLY in IE8!

Post by oldnoisy »

I added this and it works. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
Post Reply