跳到主要内容

align


HTML <thead> align 属性

向左对齐 <thead> 元素中的内容:

<table border="1" width="100%">
<thead align="left">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
</thead>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>

定义和用法

注意

HTML5 不支持 <thead> align 属性。请使用 CSS 代替。

align 属性规定 <thead> 元素中的内容的水平对齐方式。


语法

<thead align="left|right|center|justify|char">

属性值

描述
left左对齐内容。
right右对齐内容。
center居中对齐内容(表头元素的默认值)。
justify对行进行伸展,这样每行都可以有相等的宽度(就像在报纸和杂志中)。
char将内容对准指定字符。

浏览器兼容性

Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
align
Deprecated