📅  最后修改于: 2023-12-03 15:31:15.087000             🧑  作者: Mango
tbody
元素是 HTML 表格中的一部分,它定义了表格的主体部分。char
属性被用于设置表格内字符的对齐方式,当字符较短时可以使用该属性来控制字符的位置。
使用 char
属性的语法如下:
<tbody char="character">
character
代表要对齐的字符。该属性可以设置一个单一的字符。
char
属性接受单个字符,可以是 ASCII 码或 Unicode 字符。
<table>
<thead>
<tr>
<th>姓名</th>
<th>性别</th>
<th>年龄</th>
</tr>
</thead>
<tbody char="·">
<tr>
<td>张三</td>
<td>男</td>
<td>25</td>
</tr>
<tr>
<td>李四</td>
<td>男</td>
<td>28</td>
</tr>
<tr>
<td>王五</td>
<td>女</td>
<td>22</td>
</tr>
</tbody>
</table>
上述示例代码会将表格中的 tbody
中的字符对齐到一个点号(.)上。
char
属性已经过时,不再推荐使用。HTML5 规范中推荐使用 CSS 来设置表格样式。char
属性只能应用于 <tbody>
元素,不适用于 <thead>
或 <tfoot>
元素。