HTML thead char屬性用於指定thead元素中內容字符的對齊方式。僅當align屬性設置為“char”時,才可以使用此屬性。它的默認值是頁麵語言的小數點。 HTML 5不支持它。
用法:
<thead char="character">
屬性值:
- character:用於指定字符以對齊內容。
例:
<!DOCTYPE html>
<html>
<head>
<title>thead char Attribute</title>
<style>
h1 {
color:green;
}
thead {
color:blue;
}
table, tbody, td {
border:1px solid black;
border-collapse:collapse;
}
</style>
</head>
<body>
<center>
<h1>GeeksforGeeks</h1>
<h2> HTML thead char Attribute</h2>
<table>
<!-- thead tag starts from here -->
<thead align="char" char="M">
<tr>
<th>Name</th>
<th>User Id</th>
</tr>
</thead>
<!-- thead tag ends here -->
<tbody>
<tr>
<td>Ram</td>
<td>@ram_b</td>
</tr>
<tr>
<td>Shashank</td>
<td>@shashankla</td>
</tr>
</tbody>
</table>
</center>
</body>
</html>
輸出:
支持的瀏覽器:<thead> char屬性不受任何主要瀏覽器的支持。
相關用法
- HTML <td> char屬性用法及代碼示例
- HTML <col> char屬性用法及代碼示例
- HTML <colgroup> char屬性用法及代碼示例
- HTML tbody char用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML min屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML <map> name屬性用法及代碼示例
- HTML alt屬性用法及代碼示例
- HTML max屬性用法及代碼示例
- HTML dir屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML rel屬性用法及代碼示例
- HTML name屬性用法及代碼示例
- HTML value屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <thead> char Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。