DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> HTML表格標記教程(43):表頭的垂直對齊屬性VALIGN
HTML表格標記教程(43):表頭的垂直對齊屬性VALIGN
編輯:HTML和Xhtml     

在垂直方向上,可以設定表頭的對齊方式,分別有居上、居中、居下3種。
基本語法 <th valign="Top"> <th valign="Middle"> <th valign="Bottom">
語法解釋
Top為居上,Middle為居中,Bottom為居下。 文件范例:10-41.htm
設定表頭的垂直對齊方式。
01 <!-- ------------------------------ -->
02 <!-- 文件范例:10-41.htm -->
03 <!-- 文件說明:設定表頭垂直對齊 -->
04 <!-- ------------------------------ -->
05 <html>
06 <head>
07 <title>設定表頭垂直對齊</title>
08 </head>
09 <body>
10 <h1>主流的網頁設計軟件</h1>
11 <table border=3 width=400 height=100 bordercolor=#336699 background=10-8.JPG
cellspacing=10 cellpadding=25>
12 <tr>
13 <th valign="Top">網頁圖像軟件</th><th>Fireworks</th>
14 </tr>
15 <tr>
16 <td>網頁制作軟件</td><td>Dreamweaver</td>
17 </tr>
18 <tr>
19 <td>網頁動畫軟件</td><td>Flash</td>
20 </tr>
21 </table>
22 </body>
23 </html> 文件說明
第13行定義了表頭的垂直對齊方式為居上。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved