标签定义及使用说明
HTML 表格有两种单元格类型:
表头单元格 - 包含头部信息(由
标准单元格 - 包含数据(由
提示和注释
提示:如果需要将内容横跨多个行或列,请使用 colspan 和 rowspan 属性!
示例
一个简单的 HTML 表格,带有两个表头单元格和两个数据单元格:
<table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table>
The above is the detailed content of How to use html th tag. For more information, please follow other related articles on the PHP Chinese website!