Latest web development tutorials

HTML tbody valign attribute

HTML tbody tag Reference Manual HTML <tbody> tag

Examples

The <tbody> element in the end portion of the vertical alignment of the contents:

<table border="1" width="100%">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tbody valign="bottom">
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
</table>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support valign attributes.


Definition and Usage

HTML5 does not support the <tbody> valign attributes. Use CSS instead.

valign attribute specifies the vertical alignment of the <tbody> element content.


grammar

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

Property Value

描述
top 对内容进行上对齐。
middle 对内容进行居中对齐(默认值)。
bottom 对内容进行下对齐。
baseline 与基线对齐。基线是一条虚构的线。在一行文本中,大多数字母以基线为基准。baseline 值设置行中的所有表格数据都分享相同的基线。该值的效果常常与 bottom 值相同。不过,如果文本的字号各不相同,那么 baseline 的效果会更好。请看下面的图示。

When the size of the text is not the same, bottom vs. baseline icon:

valign = "bottom"

valign = "baseline"


HTML tbody tag Reference Manual HTML <tbody> tag