美文网首页
HTML表格

HTML表格

作者: 追寻那一抹寒光 | 来源:发表于2016-07-31 21:58 被阅读0次

常用标签:


表格常用标签.png

eg1.

<table border="1">
<caption>重要表格</caption>
<tr>
    <th>单元</th>
    <th>单元</th>
    <th>单元</th>
</tr>   
<tr>
    <td>单元1</td>
    <td>单元2</th>
    <td>单元3</th>
</tr>   
</table>

cellspacing属性用于控制单元格之间的间距
cellpadding属性应用于控制单元格边框与其内容之间的间距
eg.

<table border="1" cellspacing="0" cellpadding="10">
<caption>重要表格</caption>
<tr>
    <th>单元</th>
<th>单元</th>
<th>单元</th>
</tr>   
<tr>
    <td>单元1</td>
    <td>单元2</td>
    <td>单元3</td>
</tr>   
</table> 

将bgcolor与background属性加入table中,为表格添加背景颜色与背景图片

相关文章