📜  HTML<th> char 属性(1)

📅  最后修改于: 2023-12-03 14:41:57.515000             🧑  作者: Mango

HTML char 属性

在 HTML 表格中, 元素用于定义表头单元格,它和 元素的主要区别在于它的默认样式表现为加粗居中。HTML 中的 元素支持一个 char 属性。

char 属性的作用

char 属性规定表头单元格中的一个字符,在该字符所处的位置上与左侧或上方相邻单元格的边框对齐(通过 "align" 属性规定)。

语法
<th char="character"></th>

其中,character 是规定的单个字符。

属性值
  • 规定的字符(任何一个字符或空格或   实体)
示例

下面是一个使用了 char 属性的 HTML 代码片段:

<table>
  <tr>
    <th align="left" char=".">城市</th>
    <th align="right" char="_">人口数</th>
    <th align="right" char=".">GDP</th>
  </tr>
  <tr>
    <td>北京</td>
    <td align="right">2152 万</td>
    <td align="right">3.52 万亿</td>
  </tr>
  <tr>
    <td>上海</td>
    <td align="right">2418 万</td>
    <td align="right">3.27 万亿</td>
  </tr>
  <tr>
    <td>广州</td>
    <td align="right">1523 万</td>
    <td align="right">1.38 万亿</td>
  </tr>
</table>

该示例输出的表格如下:

| 城市 | 人口数 | GDP | | :------------: | :---------: | :---: | | . 北京 | 2152 万 | 3.52 万亿 | | _ 口数 | 2418 万 | 3.27 万亿 | | . 广州 | 1523 万 | 1.38 万亿 |

可以看到,char 属性可以使表头和表格数据在对齐时使用指定的字符作为对齐标志,使得表格有更好的对齐效果。