📅  最后修改于: 2023-12-03 15:01:14.576000             🧑  作者: Mango
<thead>
char 属性<thead>
是HTML表格中的一个元素,用于定义表格的表头。char属性为<thead>
元素指定了表头单元格中的默认字符,这个字符可以是一个普通字符、一个实体引用或Unicode编码。
<thead char="character">
...
</thead>
character
:指定了表头单元格中的默认字符,可以是一个普通字符、一个实体引用或Unicode编码。默认值为一个空格字符。<table>
<thead char="*">
<tr>
<th>商品名称</th>
<th>价格</th>
</tr>
</thead>
<tbody>
<tr>
<td>苹果</td>
<td>5元</td>
</tr>
<tr>
<td>香蕉</td>
<td>3元</td>
</tr>
</tbody>
</table>
| 商品名称 | 价格 | | --- | --- | | 苹果 | 5元 | | 香蕉 | 3元 |
char
属性已被HTML5废弃,建议使用CSS代替。<td>
元素分别定义每个字符。