显示列表

<table width="103" cellSpacing="1" cellpadding="0" border="0" bgcolor="blue">
  <tr>
    <td bgcolor="white" width="50">&nbsp;</td>
    <td bgcolor="white" width="50">&nbsp;</td>
  </tr>
</table>

表格宽103像素
这个表格有三条边,每条边有一个像素宽,而td中的内容宽每个有50个像素。


<table width="103" cellSpacing="1" cellpadding="5" border="0" bgcolor="blue">
  <tr>
    <td bgcolor="white" width="50">&nbsp;</td>
    <td bgcolor="white" width="50">&nbsp;</td>
  </tr>
</table>
表格宽103像素
cellpadding 设置为5px了,但表格是不会被拉大,还是103px。

只有超出范围时表格才会被长大,如
<table width="103" cellSpacing="100" cellpadding="0" border="0" bgcolor="blue">
  <tr>
    <td bgcolor="white" width="50">&nbsp;</td>
    <td bgcolor="white" width="50">&nbsp;</td>
  </tr>
</table>

返回摘要 | 分类(HTML) | 访问(7) | 编辑