Firstname | Lastname | Points |
---|---|---|
Jill | Smith | 50 |
Eve | Jackson | 94 |
John | Doe | 80 |
Adam | Johnson | 67 |
- Un tabel html este definit de tag-ul <table>
- Un tabel html este impartit in randuri folosind tag-ul <tr>
- Un rand este impartit in celule de date folosind tag-ul <td>
- Un rand poate avea titlu folosind tag-ul <th>
- Elementele <td> sunt containerele unui tabel
- Intre tag-urile <td></td> se poate folosi diverse elemente html ( text, imagini, liste, link-uri sau alte tabele )
- Stilizarea unui tabel se poate defini folosind CSS ( Cascading Style Sheets )
<tr>
<td>Ion</td>
<td>Vasile</td>
<td>50</td>
</tr>
<tr>
<td>Alex</td>
<td>Marius</td>
<td>23</td>
</tr>
</table>
<tr>
<td>Ion</td>
<td>Vasile</td>
<td>50</td>
</tr>
<tr>
<td>Alex</td>
<td>Marius</td>
<td>23</td>
</tr>
</table>
table,th,td
{
border:1px solid black;
}
</style>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Points</th>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
{
text-align:left;
}
0 comentarii:
Trimiteți un comentariu
Comenteaza despre acest articol