HTML Tutorial

HTML-tagg: <tbody>

Användning av <tbody>

  • Används för att gruppera rader med data i en HTML-tabell (<table>).

Attribut för <tbody>

  • Inga specifika attribut.

Exempel med <tbody>

Skapa en tabell med rader som representerar data:

<table>
  <thead>
    <tr>
      <th>Förnamn</th>
      <th>Efternamn</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>John</td>
      <td>Doe</td>
    </tr>
    <tr>
      <td>Jane</td>
      <td>Doe</td>
    </tr>
  </tbody>
</table>

Utforskning av <tbody>-taggen

HTML-exempel:

<!DOCTYPE html>
<html>
<body>

<table>
  <thead>
    <tr>
      <th>Förnamn</th>
      <th>Efternamn</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>John</td>
      <td>Doe</td>
    </tr>
    <tr>
      <td>Jane</td>
      <td>Doe</td>
    </tr>
  </tbody>
</table>

</body>
</html>