我有HTML腳本如下如何刪除Html5中的Html表格單元格空間?
<header>
<div id="header">
<table class="headertable">
<tr>
<td>
<table class="headertable">
<tr>
<td colspan="2">
<div id="site-title" class="site-title">
<img src="~/Images/site-title.gif" alt="site-title", title="site-title" id="img-site-title" style="display:block" />
</div>
</td>
</tr>
<tr>
<td>
<div id="fullbannerad" class="fullbannerad">
<img src="~/Images/fullbanner.gif" alt="fullbannerad", title="fullbannerad" id="img-fullbannerad" />
</div>
</td>
<td>
<div id="halfbannerad" class="halfbannerad">
<img src="~/Images/halfbanner.gif" alt="halfbannerad", title="halfbannerad" id="img-halfbannerad" />
</div>
</td>
</tr>
</table>
</td>
<td>
<div class="site-logo">
<img src="~/Images/site-logo.gif" alt="site-logo", title="site-logo" id="img-site-logo" />
</div>
</td>
</tr>
</table>
</div>
</header>
下面
是CSS
table.headertable {
border-spacing: 0;
border-collapse:collapse;}
.headertable td {
padding:0;}
有(嵌套表)TD &表之間增加的空間元素,以在下面的代碼的頁面(這我在鉻調試器中檢查)
<td>
<table class="headertable">
我該如何解決此問題?請建議。
這折騰成[的jsfiddle(http://jsfiddle.net/) – adamb 2013-03-18 14:34:37