valign属性指定 <thead>元素中内容的垂直对齐方式。HTML5 不支持 <thead> valign 属性。请使用 CSS 代替。
将<thead>元素内的内容垂直对齐到底部:
<table style="width:100%;" border="1"> <thead valign="bottom"> <tr> <th height="50">Babi娃娃制造商</th> <th height="50">Babi娃娃类型</th> </tr> </thead> <tr> <td>芭比公主</td> <td>6关节芭比娃娃</td> </tr> <tr> <td>芭比公主</td> <td>12关节芭比娃娃</td> </tr> </table>测试看看 ‹/›
IEFirefoxOperaChromeSafari
所有主流浏览器都支持 valign 属性。
HTML5 不支持 <thead> valign 属性。请使用 CSS 代替。
valign 属性指定 <thead> 元素中的内容的垂直对齐方式。
<thead valign="top|middle|bottom|baseline">
值 | 描述 |
---|---|
top | 对内容进行上对齐。 |
middle | 对内容进行居中对齐(默认值)。 |
bottom | 对内容进行下对齐。 |
baseline | 与基线对齐。基线是一条虚构的线。在一行文本中,大多数字母以基线为基准。baseline 值设置行中的所有表格数据都分享相同的基线。该值的效果常常与 bottom 值相同。不过,如果文本的字号各不相同,那么 baseline 的效果会更好。请看下面的图示。 |
当文本的字号不同时,bottom vs. baseline 图示:
valign="bottom"
valign="baseline"
HTML <thead> 标签