最新的Web开发教程
 

HTML <thead> char Attribute

<HTML <thead>标记

对准里面的内容<thead>元素的"M"字:

<table>
  <thead align="char" char="M">
    <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>
试一试»

定义和用法

<thead>字符属性不是HTML5的支持。

char属性指定里面的内容的取向<thead>元素为一个字符。

char ,如果只能用属性align属性被设置为"char"

炭的默认值是当前语言的小数点字符。


浏览器支持

属性
char 不支持 不支持 不支持 不支持 不支持

句法

<thead char="character">

属性值

描述
character 指定要对准内容的字符

<HTML <thead>标记