HTML <table>框架屬性用於指定外部邊框的可見性。
用法:
<table frame="value">
屬性值:
- void:用於隱藏外部邊框。
- above:用於顯示頂部外部邊框。
- below:用於顯示底部外部邊框。
- hsides:用於顯示頂部和底部外部邊框。
- vsides:它用於顯示左右外部邊框。
- lhs:它用於顯示左外邊界。
- rhs:它用於顯示右外部邊框。
- box:用於顯示邊框外的所有側麵。
- border:它用於顯示所有外部邊框。
注意:HTML 5不支持<table>框架屬性。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML table frame Attribute
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML table frame Attribute</h2>
<table frame="box">
<tr>
<th>NAME</th>
<th>AGE</th>
<th>BRANCH</th>
</tr>
<tr>
<td>BITTU</td>
<td>22</td>
<td>CSE</td>
</tr>
</table>
<br>
<table frame="vsides">
<tr>
<th>NAME</th>
<th>AGE</th>
<th>BRANCH</th>
</tr>
<tr>
<td>BITTU</td>
<td>22</td>
<td>CSE</td>
</tr>
</table>
<br>
<table frame="hsides">
<tr>
<th>NAME</th>
<th>AGE</th>
<th>BRANCH</th>
</tr>
<tr>
<td>BITTU</td>
<td>22</td>
<td>CSE</td>
</tr>
</table>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML <table> frame屬性支持的瀏覽器:
- 穀歌瀏覽器
- Internet Explorer 9.0
- Firefox
- Safari
- Opera
相關用法
- HTML <frame> marginheight屬性用法及代碼示例
- HTML <frame> marginwidth屬性用法及代碼示例
- HTML <frame> scrolling屬性用法及代碼示例
- HTML <frame> longdesc屬性用法及代碼示例
- HTML <frame> frameborder屬性用法及代碼示例
- HTML <frame> noresize屬性用法及代碼示例
- HTML <frame>用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML max屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML min屬性用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 HTML | <table> frame Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。