HTML <col> align屬性用於設置col元素內文本內容的水平對齊方式。 HTML 5不支持它。
用法:
<col 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 col align Attribute
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>
HTML col align Attribute
</h2>
<table width="500" border="1">
<col align="center">
<col align="center">
<tr>
<th>Name</th>
<th>Expenses</th>
</tr>
<tr>
<td>BITTU</td>
<td>2500.00</td>
</tr>
<tr>
<td>RAKESH</td>
<td>1400.00</td>
</tr>
</table>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML <col> align屬性支持的瀏覽器:
- Google Chrome:不支持
- Internet Explorer:不支持
- Firefox:不支持
- Safari:不支持
- Opera:不支持
相關用法
- HTML <td> align屬性用法及代碼示例
- HTML <p> align屬性用法及代碼示例
- HTML <th> align屬性用法及代碼示例
- HTML <img> align屬性用法及代碼示例
- HTML <div> align屬性用法及代碼示例
- HTML <tr> align屬性用法及代碼示例
- HTML <tbody> align屬性用法及代碼示例
- HTML <caption> align屬性用法及代碼示例
- HTML <tfoot> align屬性用法及代碼示例
- HTML <thead> align屬性用法及代碼示例
- HTML <legend> align屬性用法及代碼示例
- HTML <colgroup> align屬性用法及代碼示例
注:本文由純淨天空篩選整理自jit_t大神的英文原創作品 HTML | <col> align Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。