Table Row Spacing Problem in IE
- by Brij
Viewing the code below in IE displays spacing between the rows. I want to join the rows.
In Firefox, It is working fine.
<table border="0" cellspacing='0' cellpadding='0' width="720" cols="2">
<tr>
<td colspan="2">
<a href="index.html">
<img src="images/banner.gif" border="0">
</a>
</td>
</tr>
<tr valign="top">
<td width="130">
<img name="navigate" src="images/navbar.jpg" border="0">
</td>
.....
I have also tried style="margin:0; padding:0;" for tr and td but there is no effect in IE. Let me know what to do to remove spacing between rows.
Thanks