La propiedad de reglas de la tabla HTML DOM se utiliza para establecer o devolver el valor del atributo de reglas de la etiqueta <table> . El atributo de reglas se utiliza para definir qué parte de los bordes debe ser visible.
Nota : esta propiedad ya no se admite en HTML5.
Sintaxis
Devuelve la propiedad de las reglas .
tableObject.rules;
Se utiliza para establecer las reglas de propiedad.
tableObject.rules="values";
Valores de propiedad:
- none: No crea ninguna línea.
- grupos: Crea líneas entre grupos de filas y columnas.
- filas: Crea líneas entre las filas.
- cols: Crea líneas entre las columnas.
- all: crea líneas entre las filas y las columnas.
Ejemplo 1: El siguiente código HTML devuelve la propiedad de reglas de la tabla .
HTML
<!DOCTYPE html> <html> <head> <style> h1 { color: green; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML DOM Table rules Property</h2> <table id="tableID" align="center" rules="rows" summary="courses@GeeksforGeeks" frame="void"> <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="dblClick()"> Return </button> <p id="paraID"></p> <script> function dblClick() { var w = document.getElementById("tableID").rules; document.getElementById("paraID").innerHTML = w; } </script> </body> </html>
Producción:
Ejemplo 2: El siguiente código HTML ilustra cómo establecer la propiedad de las reglas .
HTML
<!DOCTYPE html> <html> <head> <style> h1 { color: green; } body { text-align: center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>HTML DOM Table rules Property</h2> <table id="tableID" align="center" rules="rows" summary="courses@GeeksforGeeks" frame="void"> <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="dblClick()"> Return </button> <p id="paraID"></p> <script> function dblClick() { var w = document.getElementById( "tableID").rules = "cols"; document.getElementById( "paraID").innerHTML = w; } </script> </body> </html>
Producción:
Navegadores compatibles
- Google Chrome
- explorador de Internet
- Ópera
- safari de manzana
- Firefox
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA