When I use IE and use a border-collapse with this code:
For some reason the, the element Data 4 is missing its border on the top where it doesn't touch Data 1. This appears to be a bug in IE because it works fine in Firefox. Does anybody have any ideas how to fix this problem without removing the border-collapse?HTML Code:<table cellspacing="0px" style="border-collapse:collapse;"> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td colspan="3" style="border:1px solid black;">Data 1</td> <td colspan="7">Data 2</td> </tr> <tr> <td colspan="1">Data 3</td> <td colspan="7" style="border:1px solid black;">Data 4</td> <td colspan="2">Data 5</td> </tr> </table>



Bookmarks