I cannot seem to reduce the space between two TR tags. I have the following code. I don’t want any space between two tr tags.
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background- color:#d7d6d4" >
<tr >
<td align="center" style="height:0px; line-height:0px; background:#932a28; border:0; border-bottom:0">
<asp:Image ID="newLogo" runat="server" ImageUrl="~/images/middle_logo_top.jpg"/>
</td>
</tr>
<tr >
<td align="center" style="height:10px; background:#e5e0dd">
<asp:Image ID="Image1" runat="server" ImageUrl="~/images/middle_logo_btm.jpg"/>
</td>
</tr>
not sure what you are asking – to remove the space in your markup or to remove the space in the browsers presentation of the markup ?
If the latter you are best off learning some css, then you can remove inline styling, stop using tables for layouts and attach display:block and other helpers to objects to get a grip of your presentation job …
Does the same as your table and probally sorts the space problems out