Hi all i'm wondering if someone can help as i've come up blank! I have a table which has been styled up using css. It renders fine in all browsers apart from IE9 (even other ie versions), i have no idea why! I've even tried removing all css and it still happens. Any thoughts?
Example html:
<tr class="altRow">
<td style="text-align: center;"><img style="vertical-align: middle; margin: 3px 0px -3px -3px;" alt="outgoing" src="/Images/outgoing.png"></td>
<td>+441279342352</td>
<td>+441279342352</td>
<td>9325691</td>
<td>02/12/2011 18:21:34</td>
<td></td>
<td>02/12/2011 18:21:58</td>
<td></td>
<td>00:00:24</td>
</tr>
This seems to be a known IE9 bug confirmed by Microsoft. See here:
http://social.msdn.microsoft.com/Forums/pl/iewebdevelopment/thread/e6f49d52-ec3f-47c5-802e-b80d1a58ed39
As a workaround, you need to replace all spaces between </td>
and <td>
. For example this td
block;
<td>9325691</td>
<td>02/12/2011 18:21:34</td>
<td></td>
<td>02/12/2011 18:21:58</td>
should be changed to;
<td>9325691</td><td>02/12/2011 18:21:34</td><td></td><td>02/12/2011 18:21:58</td>
This seems to be the only solution until we get an IE9 bug-fix for this issue.
Edit: Also this link seems to be helpful like the other one above.
http://social.msdn.microsoft.com/Forums/da-DK/iewebdevelopment/thread/28d78780-c95c-4c35-9695-237ebb912d90
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With