菜鸟教程 tryhtml_tables_10 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <table border="1" width="100%">
    <thead>
        <tr>
            <td colspan="4">This is the head of the table</td>
        </tr>
    </thead>
    <tfoot>
        <tr>
            <td colspan="4">This is the foot of the table</td>
        </tr>
    </tfoot>
    <tbody>
        <tr>
            <td>Cell 1</td>
            <td>Cell 2</td>
            <td>Cell 3</td>
            <td>Cell 4</td>
        </tr>
    </tbody>         
</table>