美文网首页
table表格

table表格

作者: 可樂Cola | 来源:发表于2018-12-28 09:38 被阅读0次

    表格

    <table width="" height="" border="" cellspacing="" cellpadding="">
                <tr><th colspan="" >Header</th></tr>
                <tr><td rowspan="" align="">Data</td></tr>
            </table>
    border:边框,用来设置表格边框
    cellspacing:设置单元格之间的距离
    cellpadding:设置内容到边框的距离
    width:表格的宽度
    height:表格的高度
    tr:表格的行
    th:表头,字体默认加粗,内容水平居中
    td:表格的内容
    align:单元格内容水平对齐方式
    left:左对齐
    right:右对齐
    center:水平居中
    valign:单元格内容垂直对齐方式
    top:顶部对齐
    bottom:底部对齐
    middle:居中对齐
    baseline:基准对齐
    

    合并单元格

    colspan:列合并,需要合并多少个单元格,他的值就是多少
    rowspan:行合并(行合并,要被合并的那一行就要注释消掉)
    

    相关文章

      网友评论

          本文标题:table表格

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