最新的Web開發教程
 

HTML <table> border Attribute

<HTML <table>標記

下面的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實例:添加邊框的表格

在我們的CSS教程中,你可以找到有關的更多詳細信息表格邊框


句法

<table border="1|0">

屬性值

描述
0 圍繞表格單元格沒有邊界
1 添加圍繞表格單元格邊框

<HTML <table>標記