“Bootstrap Table bergaris ganti warna” Kode Jawaban

Bootstrap Table bergaris ganti warna

tr:nth-child(odd) {
    background-color: lightskyblue;
    }

   tr:nth-child(even) {
    background-color: lightpink;
    }

    th {
       background-color: lightseagreen;
    }
Repulsive Ray

Bootstrap Table Small

<table class="table table-sm">
  ...
</table>
Hurt Horse

Table Bootstrap Dark

<table class="table table-dark">
  <thead>
    <tr>
      <th scope="col">#</th>
      <th scope="col">First</th>
      <th scope="col">Last</th>
      <th scope="col">Handle</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <th scope="row">1</th>
      <td>Mark</td>
      <td>Otto</td>
      <td>@mdo</td>
    </tr>
    <tr>
      <th scope="row">2</th>
      <td>Jacob</td>
      <td>Thornton</td>
      <td>@fat</td>
    </tr>
    <tr>
      <th scope="row">3</th>
      <td>Larry</td>
      <td>the Bird</td>
      <td>@twitter</td>
    </tr>
  </tbody>
</table>
Bored Bison

Bootstrap meja bergaris

// Add the table and table striped class from bootstrap
<table class="table table-striped">
Lone Wolf

Jawaban yang mirip dengan “Bootstrap Table bergaris ganti warna”

Pertanyaan yang mirip dengan “Bootstrap Table bergaris ganti warna”

Lebih banyak jawaban terkait untuk “Bootstrap Table bergaris ganti warna” di CSS

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya