Latest web development tutorials

HTML DOM Table cellPadding property

Table Object Reference Table Object

Definition and Usage

Blank cells edge of its content between cellpadding attribute specifies.

grammar

Setting cellPadding properties:

tableObject.cellPadding="number|percent"

Back cellPadding properties:

tableObject.cellPadding

Tip: cellPadding property has no default value.

描述
number 以像素来设置单元边沿与其内容之间的空白
percent 以百分比来设置单元边沿与其内容之间的空白


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support cellPadding 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