W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
html
>
<
body
>
<
table
border
="1"
style
="height:200px"
>
<
colgroup
valign
="top"
/
>
<
colgroup
valign
="bottom"
/
>
<
tr
>
<
th
>
Month
<
/th
>
<
th
>
Savings
<
/th
>
<
/tr
>
<
tr
>
<
td
>
January
<
/td
>
<
td
>
$100
<
/td
>
<
/tr
>
<
/table
>
<
/body
>
<
/html
>
<html> <body> <table border="1" style="height:200px"> <colgroup valign="top" /> <colgroup valign="bottom" /> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> </body> </html>