Table Row Spacing Problem in IE

Posted by Brij on Stack Overflow See other posts from Stack Overflow or by Brij
Published on 2010-03-08T11:47:03Z Indexed on 2010/03/08 11:51 UTC
Read the original article Hit count: 291

Filed under:
|
|
|
|

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

© Stack Overflow or respective owner

Related posts about html

Related posts about css