1. Wprowadzenie do HTML
  2. Szybki start
  3. Podstawowy dokument HTML
  4. Paragraf
  5. Formatowanie tekstu
  6. Komentarze
  7. Kolory
  8. Atrybuty
  9. Lista
  10. Linki
  11. Obrazy
  12. Tabele
  13. Symbole
  14. Cytaty
  15. Elementy Blokowe
  16. Elementy Liniowe
  17. Klasy oraz Id
  18. Układ strony
  19. Responsywność
  20. Podsumowanie

Zasięg tabeli

Tabela ma zasięg, który definiuje zakres komórek, których dotyczy nagłówek lub stopka tabeli. Zasięg nagłówka tabeli określa, które komórki są opisane przez nagłówek, a zasięg stopki tabeli określa, które komórki są opisane przez stopkę.

Istnieją trzy rodzaje zasięgu tabeli: col row rowgroup

								
<table>
    <tr>
        <th scope="col">Nazwa produktu</th>
        <th scope="col">Cena</th>
        <th scope="col">Ilość</th>
    </tr>
    <tr>
        <th scope="row">Mleko</th>
        <td>3,50 zł</td>
        <td>10</td>
    </tr>
    <tr>
        <th scope="row">Chleb</th>
        <td>2,50 zł</td>
        <td>20</td>
    </tr>
    <tr>
        <th scope="row">Jajka</th>
        <td>5,00 zł</td>
        <td>15</td>
    </tr>
</table>

								
						
Notatka

Aby określić zasięg nagłówka lub stopki tabeli, należy użyć atrybutu scope znacznika th lub tf