HTML标签表格标签

HTML标签_表格标签

tr:定义行

 

  ​bgcolor:背景色

​  align:对齐方式

td:定义单元格

 

  colspan:合并列

  rowspan:合并行

 

caption:定义表格标题

thead:定义表格的头部分

tbody:定义表格的体部分

tfoot:定义表格的脚部分

<table border="1" width="50%" cellpadding="0" cellspacing="0" bgcolor="red" align="center">
    <thead>
        <caption>表格标题</caption>
        <tr>
            <th>编号</th>
            <th>姓名</th>
            <th>成绩</th>
        </tr>
    </thead>

    <tbody>
        <tr bgcolor="#00bfff" align="center">
            <td>1</td>
            <td>小龙女</td>
            <td>100</td>
        </tr>
        <tr>
            <td>2</td>
            <td>杨过</td>
            <td>50</td>
        </tr>
    </tbody>

    <tfoot>
        <tr>
            <td>3</td>
            <td>杨过1</td>
            <td>500</td>
        </tr>
    </tfoot>
</table>

.

<table border="1" width="50%" cellpadding="0" cellspacing="0" bgcolor="red" align="center">
    <tr>
        <th rowspan="2">编号</th>
        <th>姓名</th>
        <th>成绩</th>
    </tr>
    <tr>
        <td>小龙女</td>
        <td>100</td>
    </tr>
    <tr>
        <td>2</td>
        <td colspan="2">杨过</td>
    </tr>
</table>

 

posted @ 2022-08-01 10:01  xjw12345  阅读(77)  评论(0)    收藏  举报