HTML <table> cellpadding 屬性
實(shí)例
把表格單元邊沿與單元內(nèi)容之間的間距設(shè)置為 10 像素:
<table border="1"
cellpadding="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>
嘗試一下 ?
瀏覽器支持
所有主流瀏覽器都支持 cellpadding 屬性。
定義和用法
HTML5 不支持 <table> cellpadding 屬性。請使用 CSS 代替。
cellpadding 屬性規(guī)定單元邊沿與單元內(nèi)容之間的空間,以像素計(jì)。
注意:請勿將該屬性與 cellspacing 屬性相混淆,cellspacing 屬性規(guī)定的是單元之間的空間。
提示:從實(shí)用角度出發(fā),最好不要規(guī)定 cellpadding,而是使用 CSS 來添加 padding(內(nèi)邊距)。
語法
<table cellpadding="pixels">
屬性值
值 | 描述 |
---|---|
pixels | 規(guī)定單元邊沿與單元內(nèi)容之間的空間。 |
HTML <table> 標(biāo)簽
更多建議: