The <tbody> tag is used to define the style of the table body.
align represents horizontal alignment, where left is on the left, center is on the center, and right is on the right. vlign represents vertical alignment, top is top, middle is center, bottom is bottom.
Set the table body style with the <tbody> tag.
01 <!-- -------------------------------------------------------------------------------------------------------------------------
02 <!-- File example: 10-45.htm -->
03 <!-- File description: Set the table body style-->
04 <!-- -------------------------------------------------------------------------------------------------------------------------
05 <html>
06 <head>
07 <title>Set the table body style</title>
08 </head>
09 <body>
10 <table border=3 width=400 height=100 bordercolor=#336699 align=center>
11 <thead align=center bgcolor=#00ccff>
12 <tr>
13 <td colspan=2>Web page production software</td>
14 </tr>
15 </head>
16 <tbody align=left bgcolor=#00cccc>
17 <tr>
18 <td>Web Image Software</td><td>fireworks</td>
19 </tr>
20 <tr>
21 <td>Web page production software</td><td>dreamweaver</td>
22 </tr>
23 <tr>
24 <td>Web animation software</td><td>flash</td>
25 </tr>
26 </tbody>
27 </table>
28 </body>
29 </html>
Line 16 sets the style of the table body, and line 26 sets the end of the table body.