5.html表格

<table>
  <tr>
    <th>列1标题th>
    <th>列2标题th>
    <th>列3标题th>
  tr>
  <tr>
    <td>行1列1td>
    <td>行1列2td>
    <td>行1列3td>
  tr>
  <tr>
    <td>行2列1td>
    <td>行2列2td>
    <td>行2列3td>
  tr>
table>

在此示例中,

标签用于定义表格, 标签用于定义表格中的行,
标签用于定义表格中的标题单元格,而 标签用于定义表格中的数据单元格。

此外,您还可以使用 标签添加表格标题;使用 colspan 和 rowspan 属性合并单元格;使用 CSS 样式设置表格的样式等。

你可能感兴趣的:(#,html和css,前端,html)