Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have following html codes

<div align="center" style="width:1000px;border:1px solid green;">
        <div style="border:1px solid red;float:left; width:200px;  ">
        ssssssssssss </div>    
        <div style="border:1px solid red;float:left; width:200px;  ">
        ssssssssssss </div>
    <div style="border:1px solid black;  overflow: hidden;" id="endText">       
        xxx<p>&nbsp;</p><p>&nbsp;</p><p>x</p>           
    </div>
<div style="clear:both"></div>
</div>

It works very fine in FF,Opera,Safari,Chrome, But in IE it shows wrong things. IE request predefined height for endText div for example

<div style="border:1px solid black;  overflow: hidden;height:117px; " id="endText">   

What is the problem? Which addional CSS code may keep its visual properties in IE as like as other browsers?

share|improve this question
Which IE version? – Bruno Silva Feb 6 '12 at 0:34
Internet Explorer version 9 (IE9) – Huseyin Feb 6 '12 at 4:48

3 Answers

up vote 1 down vote accepted

You are in correct way. Please add any tag after your code and make #endText height as 100%. It would be works as other browsers.

<div align="center" style="width:1000px;border:1px solid green;">
    <div style="border:1px solid red;float:left; width:200px; ">
        ssssssssssss </div>
    <div style="border:1px solid red;float:left; width:200px; ">
        ssssssssssss </div>
    <div style="border:1px solid black; height:100%" id="endText">
        xxx<p>&nbsp;</p><p>&nbsp;</p><p>x</p>
    </div>
    <div style="clear:both"></div>
</div> <hr>
share|improve this answer

Try floating #endText right and specifying a width? below i have used 594px as the borders are adding width.

<div align="center" style="width:1000px;border:1px solid green;">
    <div style="border:1px solid red;float:left; width:200px;">
        ssssssssssss
    </div>    
    <div style="border:1px solid red;float:left; width:200px;">
        ssssssssssss
    </div>
    <div style="border:1px solid black;  overflow: hidden; float: right; width: 594px" id="endText">       
    xxx<p>&nbsp;</p><p>&nbsp;</p><p>x</p>           
    </div>
    <div style="clear:both"></div>
</div>
share|improve this answer
I need it without specified width. Because I want #endText div cover remained area so first and second divs may change freely. – Huseyin Feb 6 '12 at 18:55

Try to use positioning in CSS check out w3schools for how to make divs overlap, fixed etc

share|improve this answer
I looked there, but I couldn't find any things in this regard. – Huseyin Feb 7 '12 at 23:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.