目录

style borderSpacing 属性

示例

设置表格中单元格之间的间距:

document.getElementById("myTable").style.borderSpacing = "20px";
亲自试一试 »

描述

borderSpacing 属性设置或返回表中单元格之间的间距。

笔记:该属性在以下情况下无效:边框折叠即将折叠。


浏览器支持

Property
borderSpacing Yes 9.0 Yes Yes Yes

语法

返回 borderSpacing 属性:

object.style.borderSpacing

设置 borderSpacing 属性:

object.style.borderSpacing = "length length|initial|inherit"

属性值

Value Description
length length Specifies the space between cells in length units. Negative values are not allowed. Default value is 0.
  • If one length value is specified, it specifies both the horizontal and vertical spacing
  • If two length values are specified, the first sets the horizontal spacing and the second sets the vertical spacing
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit


技术细节

默认值: 0
返回值: 一个字符串,表示表格中单元格之间的空间
CSS版本 CSS2

更多示例

示例

返回表格中单元格之间的空间:

alert(document.getElementById("myTable").style.borderSpacing);
亲自试一试 »

相关页面

CSS教程:CSS表

CSS 参考:边框间距属性