vote up 0 vote down star

The following code renders great in FF3 but doesn't work in IE7. Does anyone have an idea how to fix it?

<div style="padding-top:3px;padding-bottom:5px;width:650px;background:blue">
    <div style="height:50px;float:left;display:inline;width:500px;background:gray">http://www.brainsolis.com/2008/10/twitter-tools-for-comunity-and-love-for-...</div>
    <div style="width:100%;text-align:right;float-right;background:yellow">saaal is saaa twittertool ds ds dsdfsdsdfsdfsdfsdfsdfsd sdf dsf sdf sdf sdf sd ssssssssssssssssssssssssssssssssssssssssssssssssssss</div>
</div>

Thank you very much,

Eiso

flag

2 Answers

vote up 0 vote down

I haven't checked your sample but this took care of IE wrapping problems for me:

div { word-wrap: break-word; /* for IE, force it to wrap text and keep it inside the div */ }

link|flag
This does not work; not sure why you posted this answer. There is no standard that follows this and neither IE6 nor IE7 use this. – Kevin Mar 9 at 19:08
vote up 2 vote down

You do not need to float an element, and display:inline at the same time. Additionally, you do not need to set width:100% for DIV elements. They will naturally take up all available horizontal space.

The following CSS should achieve what you are attempting.

div.container {

}
  div.floated {
    width:50px;
    float:left;
  }
  div.textbody {
    /* styles */
  }
  br.clear {
    clear:both;
    height:0;
    line-height:0;
  }

<div class="container">
  <div class="floated">
    <p>This is floated</p>
  </div>
  <div class="textbody">
    <p>...text body...</p>
  </div>
  <br class="clear" />
</div>

For more information on CSS, check w3schools, or watch the CSS Videos at SampsonVideos.

link|flag
Actually, setting display: inline to any element that is floated will help IE6 render it correctly. – bigmattyh Feb 13 at 21:16
Then it's best to set it in an IE6-specific stylesheet via conditional comments. – Ben Blank Feb 13 at 21:23

Your Answer

Get an OpenID
or

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