HTML | Atributo de cuadro <tabla>

El atributo de marco HTML <table> se utiliza para especificar la visibilidad de los bordes exteriores .

Sintaxis:

<table frame="value">

Valores de atributos:

  • void: Se utiliza para ocultar el borde exterior.
  • arriba: se utiliza para mostrar el borde exterior superior.
  • debajo: se utiliza para mostrar el borde exterior inferior.
  • hsides: se utiliza para mostrar el borde exterior superior e inferior.
  • vsides: se utiliza para mostrar el borde exterior izquierdo y derecho.
  • lhs: se utiliza para mostrar el borde exterior izquierdo.
  • rhs: se utiliza para mostrar el borde exterior derecho.
  • cuadro: se utiliza para mostrar todos los lados fuera del borde.
  • borde: se utiliza para mostrar todo el borde exterior.

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

Ejemplo:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML table frame Attribute
    </title>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>HTML table frame Attribute</h2>
  
    <table frame="box">
        <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 frame="vsides">
        <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 frame="hsides">
        <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 el atributo de marco HTML <tabla> 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 *