Este es un atributo HTML, que se utiliza para especificar qué partes de los bordes interiores deben ser visibles. El atributo de regla HTML se aplica a las etiquetas de tabla. El atributo de reglas <table> no es compatible con HTML 5.
Sintaxis:
<table rules="value">
Atributos: Este atributo acepta 5 valores, todos se mencionan y describen a continuación.
- none: No crea ninguna línea.
- grupos: Crea líneas entre grupos de filas y columnas.
- filas: Crea una línea entre las filas.
- cols: Crea líneas entre las columnas.
- all: crea líneas entre las filas y las columnas.
Ejemplo: El siguiente ejemplo ilustra el atributo de regla en HTML.
HTML
<!DOCTYPE html> <html> <head> <style> h1 { color: green; } </style> </head> <body> <center> <h1>GeeksforGeeks</h1> <h2>What is rule attribute in HTML Table?</h2> <table rules="rows"> <tr> <th>NAME</th> <th>AGE</th> <th>BRANCH</th> </tr> <tr> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> </table> <br> <table rules="cols"> <tr> <th>NAME</th> <th>AGE</th> <th>BRANCH</th> </tr> <tr> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> </table> <br> <table rules="all"> <tr> <th>NAME</th> <th>AGE</th> <th>BRANCH</th> </tr> <tr> <td>BITTU</td> <td>22</td> <td>CSE</td> </tr> </table> </center> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA