HTML 参考手册
HTML <col> align 属性
HTML <col> 标签
源代码:
点击运行 »
<table width="100%" border="1"> <col align="left"> <col align="left"> <col align="right"> <tr> <th>ISBN</th> <th>Title</th> <th>Price</th> </tr> <tr> <td>3476896</td> <td>My first HTML</td> <td>$53</td> </tr> </table>
运行结果:
点击运行 »