html——table标签及其css样式

<table border="1" width="400px" height="200px">
    <caption>完整table</caption> //标题
    <thead>
    <tr>
        <th></th>
        <th></th>
    </tr>
    </thead>
    <tbody>
    <tr>
        <td></td>
        <td></td>
    </tr>
    </tbody>
    <tfoot>
    <tr>
        <td colspan="2">底部</td> //横向合并
    </tr>
    </tfoot>
</table>

css样式:
width height–仅table和td使用
align水平对齐–table+tr+td
valign垂直对齐–tr+td
cellpadding cellspacing内外边距–table

细线表格:

table{ background-color: black; }
tr{ background-color: white; }

另外table加上cellspacing=“1”

若指定了thead和tfoot,则其有默认高度 不随table设置高度改变
rowspan和colspan只是向下和向后合并

猜你喜欢

转载自blog.csdn.net/lucky541788/article/details/81604816