HTML <table> cellspacing 屬性
實(shí)例
把表格單元格間距設(shè)置為 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 屬性規(guī)定單元之間的空間,以像素計(jì)。
注意:請(qǐng)勿將該屬性與 cellpadding 屬性相混淆,cellpadding 屬性規(guī)定的是單元邊沿與單元內(nèi)容之間的空間。
語(yǔ)法
<table cellspacing="pixels">
屬性值
值 | 描述 |
---|---|
pixels | 規(guī)定單元之間的空間。 |
HTML <table> 標(biāo)簽
更多建議: