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.