HTML <thead> align屬性用於在表頭(thead)部分內設置文本內容的水平對齊方式。
用法:
<thead align="left|right|center|justify|char">
屬性值:
- left:它設置文本left-align。
- right:它設置文本right-align。
- center:它設置文本center-align。
- justify:它會拉伸文本以設置表格頭中所有行的寬度相等。
- char:它將text-align設置為特定字符。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML thead align 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 align Attribute</h2>
<table>
<!-- thead tag starts from here -->
<thead align="char" valign="bottom"
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>
輸出
支持的瀏覽器:下麵列出了HTML <thead> align屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- Safari
- Opera
相關用法
- HTML <td> align屬性用法及代碼示例
- HTML <col> align屬性用法及代碼示例
- HTML <th> align屬性用法及代碼示例
- HTML <div> align屬性用法及代碼示例
- HTML <tr> align屬性用法及代碼示例
- HTML <p> align屬性用法及代碼示例
- HTML <img> align屬性用法及代碼示例
- HTML <caption> align屬性用法及代碼示例
- HTML <input> align屬性用法及代碼示例
- HTML <tbody> align屬性用法及代碼示例
- HTML <legend> align屬性用法及代碼示例
- HTML <object> align屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <thead> align Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。