HTML <th> 标签nowrap属性

  • <th>标签nowrap属性定义和用法

    nowrap属性是一个布尔属性。
    如果存在,则指定标题单元格内的内容不应该换行。
    HTML5中不支持<th>的nowrap属性。请改用CSS。
    CSS语法:<th style =“white-space:nowrap”>

  • <th>标签nowrap属性浏览器支持

    Edge/IE Chrome FireFox Safari Opera
    支持 支持 支持 支持 支持
  • HTML4.01和HTML5之间的差异

    HTML5不支持nowrap属性。

  • HTML和XHTML之间的差异

    在XHTML中,禁止属性最小化,而nowrap属性必须定义为<th nowrap=“nowrap”>。

  • <th>标签nowrap属性语法

    <th nowrap>

  • <th>标签nowrap属性实例

    <table>
      <tr>
        <th>Month</th>
        <th nowrap>My Savings for a new car</th>
      </tr>
      <tr>
        <td>January</td>
        <td>$100</td>
      </tr>
      <tr>
        <td>February</td>
        <td>$80</td>
      </tr>
    </table>
    尝试一下