HTML範圍屬性用於指定標題單元格用於標題行,列,列組或行組。此屬性在瀏覽器上不顯示任何視覺效果,但用於屏幕閱讀器。
用途:僅在<th>元素中使用。
用法:
<th scope="col | row | colgroup | rowgroup">
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML scope Attribute
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML scope Attribute</h2>
<table border="1" width="500">
<tr>
<th scope="col">NAME</th>
<th scope="col">AGE</th>
<th scope="col">BRANCH</th>
</tr>
<tr>
<td>BITTU</td>
<td>22</td>
<td>CSE</td>
</tr>
<tr>
<td>RAKESH</td>
<td>25</td>
<td>EC</td>
</tr>
</table>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML作用域屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- 蘋果Safari
- Opera
相關用法
- HTML <th> scope屬性用法及代碼示例
- HTML <td> scope屬性用法及代碼示例
- HTML scope屬性用法及代碼示例
- HTML <html> xmlns屬性用法及代碼示例
- HTML scoped屬性用法及代碼示例
- HTML <th> valign屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML poster屬性用法及代碼示例
- HTML Class屬性用法及代碼示例
- HTML style屬性用法及代碼示例
- HTML oninvalid用法及代碼示例
- HTML <select> autocomplete屬性用法及代碼示例
- HTML <table> bgcolor屬性用法及代碼示例
- HTML onsubmit用法及代碼示例
- HTML onunload用法及代碼示例
- HTML srcdoc屬性用法及代碼示例
- HTML Marquee truespeed用法及代碼示例
- HTML onkeyup用法及代碼示例
- HTML ondrop用法及代碼示例
- HTML <td> abbr屬性用法及代碼示例
- HTML onpageshow用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | scope Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。