0

只有一条边框线的表格,在这种情况下我有两个边框...

<table width="100%" border="1">
<tr>
<td width="12%">&nbsp;</td>
<td width="88%">&nbsp;</td>
</tr>
</table>

谢谢

4

3 回答 3

4

添加边框折叠 CSS 规则:

table {
    border-collapse:collapse;
}

jsFiddle 示例

于 2013-10-17T16:22:54.497 回答
2

CSS:

table {border-collapse:collapse;}
于 2013-10-17T16:22:51.637 回答
1

您应该尽可能使用 css 进行样式设置。关于它的一篇很棒的文章在这里http://www.w3schools.com/css/css_table.asp

尝试将此添加到您的CSS

 table
{
border-collapse:collapse;
}

一个例子在这里http://jsfiddle.net/cxmBW/1

于 2013-10-17T16:25:50.843 回答