La propiedad cellSpacing de la tabla HTML DOM se utiliza para establecer o devolver el valor del atributo cellSpacing de un elemento <table>. El atributo cellSpacing se utiliza para definir los espacios entre las celdas.
Nota : esta propiedad ya no se admite en HTML5.
Sintaxis
- Devuelve la propiedad cellSpacing.
TableObject.cellSpacing
- Se utiliza para establecer la propiedad cellSpacing.
TableObject.cellSpacing = "pixels"
Valores de propiedad: contiene el valor numérico que representa el número de espacios entre las dos celdas en términos de píxeles.
Valor devuelto: Devuelve un valor numérico que representa el espacio entre las celdas en términos de píxeles.
Ejemplo 1: El siguiente código devuelve la propiedad Table cellSpacing.
HTML
<!DOCTYPE html> <html> <head> <title> Table cellSpacing Property in HTML </title> <style> table, td { border: 1px solid green; } h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Table cellSpacing Property</h2> <table id="GFG" align="center" cellspacing="20"> <thead> <tr> <th>Subject</th> <th>Courses</th> </tr> </thead> <tr> <td>Java</td> <td>Fork Java</td> </tr> <tr> <td>Python</td> <td>Fork Python</td> </tr> <tr> <td>Placements</td> <td>Sudo Placement</td> </tr> </table> <br /> <button ondblclick="Table_Caption()"> Return CellPadding </button> <p id="sudo"></p> <script> function Table_Caption() { var w = document.getElementById( "GFG").cellSpacing; document.getElementById( "sudo").innerHTML = w + "PX"; } </script> </body> </html>
Producción:
Ejemplo 2: El siguiente código HTML ilustra cómo configurar la propiedad cellSpacing.
HTML
<!DOCTYPE html> <html> <head> <title> Table cellSpacing Property in HTML </title> <style> table, td { border: 1px solid green; } h1 { color: green; } h2 { font-family: Impact; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>Table cellSpacing Property</h2> <table id="GFG" align="center" cellspacing="20"> <thead> <tr> <th>Subject</th> <th>Courses</th> </tr> </thead> <tr> <td>Java</td> <td>Fork Java</td> </tr> <tr> <td>Python</td> <td>Fork Python</td> </tr> <tr> <td>Placements</td> <td>Sudo Placement</td> </tr> </table> <br /> <button ondblclick="Table_Caption()"> Return CellPadding </button> <p id="sudo"></p> <script> function Table_Caption() { // Pixel set var w = (document.getElementById( "GFG").cellSpacing = "5"); document.getElementById( "sudo").innerHTML = w + "PX"; } </script> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Firefox
- safari de manzana
- explorador de Internet
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA