我似乎无法减少两个TR标签之间的空间。我有以下代码。我不希望两个tr标签之间有任何空格。
<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>
答案 0 :(得分:0)
不确定您的要求 - 删除标记中的空格或删除标记的浏览器演示文稿中的空格?
如果后者你最好学习一些css,那么你可以删除内联样式,停止使用表格进行布局,并将 display:block 和其他帮助附加到对象上以获得对象的掌握工作...
<style type="text/css">
div , div img { display:block }
.fl { float:left; }
</style>
<div class="fl"><img src="image1.jpg alt=""/></div>
<div class="fl"><img src="image2.jpg alt=""/></div>
与您的表格相同,并且可以对空间问题进行排序
答案 1 :(得分:0)
我认为你应该使用CSS进行布局并停止使用表格。
看看这个:http://sixrevisions.com/web-standards/20-html-best-practices-you-should-follow/