美文网首页
HTML标签(第二篇)

HTML标签(第二篇)

作者: JohnnyB0Y | 来源:发表于2017-04-04 09:55 被阅读15次

    <h5>表格:Table</h5>

    <table>
    <tr>
    <td>单元格内容1</td>
    <td>单元格内容2</td>
    <td>单元格内容3</td>
    </tr>
    </table>
    
    QQ20160904-0@2x.png QQ20160904-2@2x.png QQ20160904-2@2x.png

    <h6>表格的结构:</h6>

    在使用表格进行布局时,可以将表格划分为头部、主体和页脚,具体 如下所示:
    < thead>< /thead>:用于定义表格的头部,必须位于<table></table>标记中,一般包含网页的logo和导航等头部信息。
    < tfoot>< /tfoot >:用于定义表格的页脚,位于< table>< /table>标记中< thead>< /thead>标记之后,一般包含网页底部的企业信息等。
    < tbody>< /tbody>:用于定义表格的主体,位于< table>< /table>标记中< tfoot></ tfoot>标记之后,一般包含网页中除头部和底部之外的其他内容。

    相关文章

      网友评论

          本文标题:HTML标签(第二篇)

          本文链接:https://www.haomeiwen.com/subject/ahalettx.html