table cellspacing属性指定单元格之间的间距(以像素为单位)。
把表格单元格间距设置为 8 像素:
<table cellspacing="8" border="1"> <tr> <th>姓名</th> <th>学分</th> </tr> <tr> <td>张三</td> <td>90</td> </tr> <tr> <td>李四</td> <td>87</td> </tr> </table>测试看看 ‹/›
IEFirefoxOperaChromeSafari
所有主流浏览器都支持 cellspacing 属性。
HTML5 不支持 <table> cellspacing 属性。
cellspacing 属性指定单元之间的空间,以像素为单位。若不设置该属性,则其默认值为 cellspacing="2"。
注意:请勿将该属性与 cellpadding 属性相混淆,cellpadding 属性指定的是单元边沿与单元内容之间的空间。
<table cellspacing="pixels">
值 | 描述 |
---|---|
pixels | 指定单元之间的空间。 |