Latest web development tutorials

HTML DOM Table cellSpacing property

Table Object Reference Table Object

Definition and Usage

cellSpacing property sets or returns the amount of space (in pixels) between cells in the table.

grammar

Setting cellSpacing properties:

tableObject.cellSpacing="number|percent"

Back cellSpacing properties:

tableObject.cellSpacing

Tip: cellSpacing property has no default value.

描述
number 以像素为单位设置单元格之间的空白
percent 以百分比来设置单元格之间的空白


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support cellSpacing property


Examples

Examples

Change the blank table cell and the cell gap between the edge of its content:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function padding(){
    document.getElementById('myTable').cellPadding="25";
}
function spacing(){
    document.getElementById('myTable').cellSpacing="15";
}
</script>
</head>
<body>

<table id="myTable" border="1">
<tr>
        <td>cell 1</td>
        <td>cell 2</td>
</tr>
<tr>
        <td>cell 3</td>
        <td>cell 4</td>
</tr>
</table>
<br>
<button type="button" onclick="padding()">修改单元格边距</button>
<button type="button" onclick="spacing()">修改单元格间距</button>

</body>
</html>

try it"


Table Object Reference Table Object