美文网首页
HTML <table> 标签

HTML <table> 标签

作者: 小沫360 | 来源:发表于2016-10-20 16:26 被阅读50次

HTML <table> 标签

tr 元素定义表格行,th 元素定义表头,td 元素定义表格单元。

表格中的属性

<table border="1" cellspacing="0" cellpadding="10">
    <caption>table常用属性</caption>
    <tr>
        <td>属性名</td>
        <td>含义</td>
        <td>值</td>
    </tr>
    <tr>
        <td>border</td>
        <td>设置边框,默认0,没有边框</td>
        <td>px</td>
    </tr>
    <tr>
        <td>cellspacing</td>
        <td>设置单元格与单元格之间的距离</td>
        <td>默认为2px,px,%</td>
    </tr>
    <tr>
        <td>cellpadding</td>
        <td>设置文字与单元格之间的距离</td>
        <td>默认为1px,px,%</td>
    </tr>
    

单元格合并

<tr>
     <td colspan="2">1</td>  跨行
     <td rowspan="2">1</td>  跨列
 </tr>

caption属性可以设置表格的标题

<table>
    <caption>表格标题</caption>
   
</table>

相关文章