przewiń do treści

HTML, XHTML i CSS. Praktyczne projekty. Wydanie II

Włodzimierz Gajda

<table summary="Wyniki meczów...">
    <caption>Grupa A</caption>
    <colgroup></colgroup>
    <colgroup span="5"></colgroup>
    <colgroup class="polska"></colgroup>
    <colgroup span="2"></colgroup>
    <tr>
        <th class="brak"></th>
        <th>Armenia</th>
        <th>Azerbejdżan</th>
        <th>Belgia</th>
        <th>Finlandia</th>
        <th>Kazachstan</th>
        <th>Polska</th>
        <th>Portugalia</th>
        <th>Serbia</th>
    </tr>
    <tr>
        <th>Armenia</th>
        <td class="brak"></td>
        <td></td>
        <td></td>
        <td>1:0</td>
        <td>1:2</td>
        <td>1:0</td>
        <td></td>
        <td>3:0</td>
    </tr>
    ...
    <tr class="polska">
        <th>Polska</th>
        <td>1:0</td>
        <td>1:3</td>
        <td>0:1</td>
        <td></td>
        <td>0:1</td>
        <td class="brak"></td>
        <td></td>
        <td></td>
    </tr>
    ...
</table>

Listing 27.10. Tabela wyników grupy „polskiej” eliminacji do mistrzostw Europy 2008

Rozdział 27. Tabele

listing-27-10.txt