其他分享
首页 > 其他分享> > table属性

table属性

作者:互联网

 

caption 表格标题

border 边框
width 宽度
height 高度
cellspacing 边框线和边框线之间的间距
cellpadding 内容和边框线之间的间距


align 设置内容水平对齐,给table设置align是表格整体居中
left 左对齐
right 右对齐
center 水平居中

valign 内容垂直居中(给tr或者td,th有效果,table没有效果)
top 上对齐
bottom 下对齐
middle 垂直居中(默认)

表格合并

合并行:rowspan(上下合并行)

合并列:colspan(左右合并列)

合并行、合并列的属性给th、td加

<table border="1px" cellspacing="0" cellpadding="0" width="300px" height="300px" align="center">
        <caption>合并</caption>
        <tr align="center">
            <th>1</th>
            <th colspan="2">2</th>
        </tr>
        <tr align="center">
            <td rowspan="2">3</td>
            <td>4</td>
            <td>4</td>
        </tr>
        <tr align="center">
            <td>6</td>
            <td>6</td>
        </tr>
    </table>

 

标签:居中,表格,合并,对齐,table,边框线,属性
来源: https://www.cnblogs.com/phantomyy/p/14752511.html