“Bootstrap -Tabelle gestreifte Änderungsfarbe” Code-Antworten

Bootstrap -Tabelle gestreifte Änderungsfarbe

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

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

    th {
       background-color: lightseagreen;
    }
Repulsive Ray

Bootstrap -Tisch klein

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

Tischbootstrap Dunkel

<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

gestreifte Tischbootstrap

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

Ähnliche Antworten wie “Bootstrap -Tabelle gestreifte Änderungsfarbe”

Fragen ähnlich wie “Bootstrap -Tabelle gestreifte Änderungsfarbe”

Weitere verwandte Antworten zu “Bootstrap -Tabelle gestreifte Änderungsfarbe” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen