HTML table cellspacing 屬性
HTML <table>cellspacing屬性
HTML <table> 標簽
實例
把表格單元格間距設置為 10 像素:
<table border="1"
cellspacing="10">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<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 | 規定單元之間的空間。 |
HTML <table> 標簽