Latest web development tutorials

propiedad DOM HTML table cellpadding

Tabla de referencia de objetos Tabla de objetos

Definición y Uso

Blank borde células de su contenido entre especifica atributos cellpadding.

gramática

Configuración de las propiedades CELLPADDING:

tableObject.cellPadding="number|percent"

cellpadding propiedades para la espalda:

tableObject.cellPadding

Consejo: cellPadding propiedad no tiene un valor predeterminado.

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


Soporte para el navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Todos los principales navegadores soportan la propiedad cellPadding


Ejemplos

Ejemplos

Cambiar la celda de la tabla en blanco y el intersticio celular entre el borde de su contenido:

<!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>

Trate »


Tabla de referencia de objetos Tabla de objetos