例
左对齐的标题单元格内容:
<table>
<tr>
<th align="left">Month</th>
<th align="left">Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
试一试» 定义和用法
该align属性指定标题单元格内容的水平对齐方式。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
align | 是 | 是 | 是 | 是 | 是 |
注意:主流浏览器无处理"char"正确的价值。
兼容性说明
该align的属性<th>在HTML5不支持。 使用CSS来代替。
CSS语法: <th style="text-align:left">
在我们的CSS教程中,你可以找到有关的更多详细信息text-align property 。
句法
<th align="left|right|center|justify|char">
属性值
值 | 描述 |
---|---|
left | 左对齐内容 |
right | 右对齐内容 |
center | 默认值<th> 。 中心 - 对齐内容 |
justify | 伸展的线条,使每一行都有相同的宽度(就像在报纸和杂志) |
char | 对齐内容到特定的字符 |