codecamp

HTML thead char 属性

HTML <thead> char 属性

HTML thead 标签参考手册 HTML <thead> 标签

实例

把 <thead> 元素中的内容与字符 "M" 对齐:

<table border="1" width="100%">
  <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>

尝试一下 »

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

几乎所有的主流浏览器都不支持 char 属性。


定义和用法

HTML5 不支持 <thead> char 属性。

char 属性规定 <thead> 元素中的内容相对某个字符的对齐方式。

仅当 align 属性设置为 "char" 时,才能使用 char 属性。

char 属性的默认值是当前页面语言的小数点字符。


语法

<thead char="character">

属性值

描述
character 规定将内容与之对齐的字符。


HTML thead 标签参考手册 HTML <thead> 标签
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML标签

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }