HTML <col> valign 屬性
實例
具有不同垂直對齊方式的列的表格:
<table border="1"style="height:200px">
<col valign="top">
<col valign="bottom">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<col valign="top">
<col valign="bottom">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
嘗試一下 ?
瀏覽器支持
只有Internet Explorer 和 Opera 支持 valign 屬性。但是, IE 和 Opera 不支持值為 "baseline".
定義和用法
HTML5 不再支持 <col> valign 屬性。
align 屬性規(guī)定與 <col> 元素相關(guān)的內(nèi)容的垂直對齊方式。
語法
<col valign="top|middle|bottom|baseline">
屬性值
值 | 描述 |
---|---|
top | 對內(nèi)容進行上對齊。 |
middle | 對內(nèi)容進行居中對齊(默認值)。 |
bottom | 對內(nèi)容進行下對齊。 |
baseline | 與基線對齊。 |
基線是一條虛構(gòu)的線。在一行文本中,大多數(shù)字母以基線為基準。baseline 值設(shè)置行中的所有表格數(shù)據(jù)都分享相同的基線。該值的效果常常與 bottom 值相同。不過,如果文本的字號各不相同,那么 baseline 的效果會更好。請看下面的圖示:
valign="bottom"
valign="baseline"
HTML <col> 標簽
更多建議: