把表格单元格间距设置为 10 像素:
运行一下 »<table border="1" cellspacing="10">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
所有主流浏览器都支持 cellspacing 属性。
HTML5 不支持 <table> cellspacing 属性。
cellspacing 属性规定单元之间的空间,以像素计。
注意:请勿将该属性与 cellpadding 属性相混淆,cellpadding 属性规定的是单元边沿与单元内容之间的空间。
<table cellspacing="pixels">
值 | 描述 |
---|---|
pixels | 规定单元之间的空间。 |