例
下面的HTML表將與周圍的表格單元格邊框顯示:
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
試一試» 定義和用法
該border屬性指定邊框應該圍著桌子細胞或不顯示。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
border | 是 | 是 | 是 | 是 | 是 |
兼容性說明
在我們的CSS教程中,你可以找到有關的更多詳細信息表格邊框 。
句法
<table border="1|0">
屬性值
值 | 描述 |
---|---|
0 | 圍繞表格單元格沒有邊界 |
1 | 添加圍繞表格單元格邊框 |