您的位置:首页 > 其它

CellSpacing 和CellPadding的区别

2015-03-13 14:40 197 查看
cellspacing表格单元格间距设置

cellpadding表格单元边沿与单元内容之间的间距设置

border设置表格边框大小

<html>

<body>

<p>Table with cellspacing and cellpadding:</p>

<table border="10"cellspacing="5" cellpadding="50">

  <tr>

    <th>Month</th>

    <th>Savings</th>

  </tr>

  <tr>

    <td>January</td>

    <td>$100</td>

  </tr>

</table>

<p>Table without others:</p>

<table border="1">

  <tr>

    <th>Month</th>

    <th>Savings</th>

  </tr>

  <tr>

    <td>January</td>

    <td>$100</td>

  </tr>

</table>

<p>Table with cellspacing:</p>

<table border="1"cellspacing="10">

  <tr>

    <th>Month</th>

    <th>Savings</th>

  </tr>

  <tr>

    <td>January</td>

    <td>$100</td>

  </tr>

</table>

<p>Table with cellpadding:</p>

<table border="1" cellpadding="10">

  <tr>

    <th>Month</th>

    <th>Savings</th>

  </tr>

  <tr>

    <td>January</td>

    <td>$100</td>

  </tr>

</table>

<p><b>Note:</b> The cellpadding attribute is not supported in HTML5. Use CSS instead.</p>

</body>

</html>

Table with cellspacing and cellpadding:
MonthSavings
January$100
Table without others:
MonthSavings
January$100
Table with cellspacing:
MonthSavings
January$100
Table with cellpadding:
MonthSavings
January$100
Note: The cellpadding attribute is not supported in HTML5. Use CSS instead.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: