HTML | Atributo de reglas de <tabla>

El atributo de reglas HTML <table> se utiliza para especificar qué partes de los bordes interiores deben ser visibles .

Sintaxis:

<table rules="value">

Valores de atributos:

  • 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ínea entre las columnas.
  • all: crea una línea entre las filas y las columnas.

Nota: el atributo de reglas <table> no es compatible con HTML 5.

Ejemplo:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML table rules Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML table rules Attribute</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>
</body>
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con las reglas HTML <table> Atributo se enumeran a continuación:

  • Google Chrome
  • Internet Explorer 9.0
  • Firefox
  • Safari
  • Ópera

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *