HTML <table> 标签的 cellspacing 属性 详解
HTML基础 2023-07-13 19:02:16小码哥的IT人生shichen
HTML <table> 标签的 cellspacing 属性
实例
下面的例子把表格单元格间距设置为 10 像素:
<table border="8" cellspacing="10">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
完整实例【亲自试一试】:
<html>
<body>
<h4>没有 cellspacing:</h4>
<table border="1">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
<h4>带有 cellspacing:</h4>
<table border="1"
cellspacing="10">
<tr>
<td>First</td>
<td>Row</td>
</tr>
<tr>
<td>Second</td>
<td>Row</td>
</tr>
</table>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
语法
<body cellspacing="value">
属性值
值 | 描述 |
---|---|
pixels | 规定单元之间的空间。 |