HTML5快速上手之10:与表格有关的基本指令

来源:互联网 发布:淘宝网药假吗 编辑:程序博客网 时间:2024/05/29 11:10

1.代码:

<!DOCTYPE html><html><head><title>文档标题</title></head><body>此处为文本内容.......<!-- 以下是与表格有关的指令 --><table border="1">  <tr>    <th>表格标题</th>    <th>表格标题</th>  </tr>  <tr>    <td>表格数据</td>    <td>表格数据</td>  </tr></table></body></html>


2.结果:


0 0
原创粉丝点击