DoporučujemeZaložit web nebo e-shop
aktualizováno: 11.08.2011 11:15:04 

HTML kódy

HTML - Tabulky

1. Tabulka:

Buňka 1 Buňka 2

Kód:

<table border="1">
<tr>
<td>Buňka 1</td>
<td>Buňka 2</td>
</tr>
</table>

2. Tabulka:

 

Buňka 1 Buňka 2

Kód:

<table border="1" cellpadding="5" cellspacing="0" width="100%">
<tr>
<td width="30%">Buňka 1</td><td>Buňka 2</td>
</tr>
</table>

3. Tabulka:

 

Záhlaví tabulky Záhlaví tabulky
Buňka 1 Buňka 2

Kód:

<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th>Záhlaví tabulky</th>
<th>Záhlaví tabulky</th>
</tr>
<tr>
<td width="30%">Buňka 1</td><td>Buňka 2</td>
</tr>
</table>

4. Tabulka:

 

Záhlaví tabulky
Buňka 1 Buňka 2

Kód:

<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th colspan="2">Záhlaví tabulky</th>
</tr>
<tr>
<td width="30%">Buňka 1</td><td>Buňka 2</td>
</tr>
</table>

5. Tabulka:

 

Záhlaví tabulky Buňka 1
Buňka 2

Kód:

<table border="1" cellpadding="5" cellspacing="5" width="100%">
<tr>
<th rowspan="2">Záhlaví tabulky</th><td>Buňka 1</td>
</tr>
<tr>
<td width="70%">Buňka 2</td>
</tr>
</table>