HTML <table> border屬性用於指定表格的邊框。它設置表格單元格周圍的邊框。
用法:
<table border="1|0">
屬性值:
- 1:它設置表格單元格周圍的邊框。
- 0:它刪除(未設置)表格單元格周圍的邊框。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML table border Attribute
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML table border Attribute</h2>
<table border="1">
<caption>Author Details</caption>
<tr>
<th>NAME</th>
<th>AGE</th>
<th>BRANCH</th>
</tr>
<tr>
<td>BITTU</td>
<td>22</td>
<td>CSE</td>
</tr>
<tr>
<td>RAM</td>
<td>21</td>
<td>ECE</td>
</tr>
</table>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML <table> border屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Safari
- Opera
相關用法
- HTML <img> border屬性用法及代碼示例
- HTML border屬性用法及代碼示例
- HTML <object> border屬性用法及代碼示例
- HTML Style border用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML src屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 HTML | <table> border Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。