19 - table: definición de un estilo a la cabecera de la tabla

Disponemos las clases "table-light" y "table-dark" para aplicar a la etiqueta "thead" de una tabla.

Un ejemplo de empleo de estas clases:

<!doctype html>
<html>
<head>
  <title>Prueba de Bootstrap 5</title> 
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
</head>
<body>

  <div class="container">
    <table class="table">
      <thead class="table-light"> 
        <tr> 
          <th>Titulo 1</th> 
          <th>Titulo 2</th>
          <th>Titulo 3</th>
        </tr> 
      </thead>
        <tr> 
          <td>Elemento 1,1</td>
          <td>Elemento 1,2</td> 
          <td>Elemento 1,3</td> 
        </tr>
        <tr> 
          <td>Elemento 2,1</td>
          <td>Elemento 2,2</td> 
          <td>Elemento 2,3</td> 
        </tr>
        <tr> 
          <td>Elemento 3,1</td>
          <td>Elemento 3,2</td> 
          <td>Elemento 3,3</td> 
        </tr>
        <tr> 
          <td>Elemento 4,1</td>
          <td>Elemento 4,2</td> 
          <td>Elemento 4,3</td> 
        </tr>
        <tr> 
          <td>Elemento 5,1</td>
          <td>Elemento 5,2</td> 
          <td>Elemento 5,3</td> 
        </tr>
    </table>

    <table class="table">
      <thead class="table-dark"> 
        <tr> 
          <th>Titulo 1</th> 
          <th>Titulo 2</th>
          <th>Titulo 3</th>
        </tr> 
      </thead>
        <tr> 
          <td>Elemento 1,1</td>
          <td>Elemento 1,2</td> 
          <td>Elemento 1,3</td> 
        </tr>
        <tr> 
          <td>Elemento 2,1</td>
          <td>Elemento 2,2</td> 
          <td>Elemento 2,3</td> 
        </tr>
        <tr> 
          <td>Elemento 3,1</td>
          <td>Elemento 3,2</td> 
          <td>Elemento 3,3</td> 
        </tr>
        <tr> 
          <td>Elemento 4,1</td>
          <td>Elemento 4,2</td> 
          <td>Elemento 4,3</td> 
        </tr>
        <tr> 
          <td>Elemento 5,1</td>
          <td>Elemento 5,2</td> 
          <td>Elemento 5,3</td> 
        </tr>
    </table>

   </div>   

</body>
</html>

En la primer tabla aplicamos la clase "table-light" a la etiqueta "thead":

      <thead class="table-light"> 

En la segunda tabla aplicamos la clase "table-dark" a la etiqueta "thead":

      <thead class="table-dark"> 

Podemos ver la diferencias que tienen en la cabecera cada tabla:

bootstrap 5 table thead table-light table-dark

Ejecutar Ejemplo

Retornar