Latest web development tutorials

propiedad HTML DOM Tabla cellSpacing

Tabla de referencia de objetos Tabla de objetos

Definición y Uso

CELLSPACING propiedad establece o devuelve la cantidad de espacio (en píxeles) entre las células en la tabla.

gramática

Configuración de las propiedades CELLSPACING:

tableObject.cellSpacing="number|percent"

CELLSPACING propiedades para la espalda:

tableObject.cellSpacing

Consejo: cellSpacing propiedad no tiene un valor predeterminado.

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


Soporte para el navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Todos los principales navegadores soportan la propiedad cellSpacing


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