I have a rows of data in div tags that float left and have widths set. They are inside li tags. Everything works fine in chrome and FF, but in IE8 the numbers show up in the middle of my rows, right next to the last div tag that doesn't have a float left.

The lists are created dynamically so I'll try to recreate an example.

<ol id='list'>
    <li>
        <div id='d1'>data</div>
        <div id='d2'>data2</div>
    </li>
</ol>

The css would look something like

#d1{
    float:left;  
    width:50px;
}
#d2{
    width:40px;
}

This is my first question on here hopefully it is clear enough.

link|improve this question

You'll never get that to work cross-browser... You'd be better off setting the numbers yourself in another division that's floated to the left of that. If your data is within divisions, then you're only going to confuse screen readers and bots with the list. – animuson Jun 30 '10 at 4:10
So is this some kind of bug in IE? – qw3n Jun 30 '10 at 4:49
feedback

1 Answer

All of the divs that belong on a particular row should be left floated and the container should be either an inline block or regular block.

for example:

<style>
  .column { float:left; }
  #d1 { width: 50px; }
  #d2 { width: 40px; }
  li {display: inline-block;}
  br { clear: both; }
</style>
<li>
  <div class="column" id="d1">data</div>
  <div class="column" id="d2">data2</div>
</li>
<br>
<li>
  <div class="column" id="d1">data</div>
  <div class="column" id="d2">data2</div>
</li>

Most likely you have either an invalid doc type or have selected one that causes quirks mode which is why it works in some of the browsers.

link|improve this answer
Well the page is set to XHTML 1.0 Transitional doctype – qw3n Jun 30 '10 at 4:51
feedback

Your Answer

 
or
required, but never shown

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