HTML 表格

来源:互联网 发布:python写上位机 wifi 编辑:程序博客网 时间:2024/06/16 13:52

最简单的如下:

<table border="1">    <tr>        <td>row 1, cell 1</td>        <td>row 1, cell 2</td>    </tr>    <tr>        <td>row 2, cell 1</td>        <td>row 2, cell 2</td>    </tr></table>

其中border是设置边框的宽度


更详细的请参考

http://www.runoob.com/html/html-tables.html