最新的Web開發教程
 

HTML <thead> valign Attribute

<HTML <thead>標記

垂直對齊裡面的內容<thead>元素的底部:

<table>
  <thead valign="bottom">
    <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> VALIGN屬性不是HTML5的支持。 使用CSS來代替。

valign屬性指定的內容的垂直對齊方式<thead>元素。


瀏覽器支持

屬性
valign

兼容性說明

valign的屬性<thead>在HTML5不支持。 使用CSS來代替。

CSS語法: <thead style="vertical-align:bottom">

CSS實例:內垂直對齊內容<thead>

在我們的CSS教程中,你可以找到有關的更多詳細信息vertical-align property


句法

<thead valign="top|middle|bottom|baseline">

屬性值

描述
top 頂部對齊內容
middle 中心對齊內容
bottom 底部對齊內容
baseline 基線是假想線,大部分信件的“坐”,在一行文字。 基準值設定行,使所有的表數據共享相同的基線。 常常這具有作為底值相同的效果。 然而,如果字體是在不同的尺寸,基線看起來更好。 看看下面的圖

底部與基線的插圖,如果字體大小不同:

valign="bottom"

valign="baseline"


<HTML <thead>標記