Il esimo tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
Il tag th definisce una cella di intestazione in una tabella HTML.
Una tabella HTML ha due tipi di celle:
- Celle di intestazione: celle che contengono informazioni sul titolo, utilizzano il tag th per creare una casella del titolo. Il testo nella casella del titolo sarà in grassetto e centrato per impostazione predefinita.
- Cella standard: contiene i dati della tabella, usa il tag td per creare. Il testo nelle celle standard verrà stampato normalmente e verrà allineato a sinistra per impostazione predefinita.
Usa il tag th insieme ai tag table, tr e td per creare tabelle in HTML.
Usando
Esempio : utilizzare una combinazione del tag th con i tag table, tr e td per creare una tabella semplice.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> thead {color:green;} tbody {color:blue;} tfoot {color:red;} table, th, td { border: 1px solid black; } </style> </head> <body> <h1>Học html miễn phí tại web888.vn</h1> <table> <thead> <tr> <th>Tên Thẻ</th> <th>Mô tả</th> </tr> </thead> <tfoot> <tr> <td>Tổng</td> <td>3 Thẻ</td> </tr> </tfoot> <tbody> <tr> <td>a</td> <td>tạo siêu liên kết</td> </tr> <tr> <td>p</td> <td>định nghĩa một đoạn văn bản</td> </tr> <tr> <td>br</td> <td>ngắt dòng hiện tại</td> </tr> </tbody> </table> </body> </html>