A tag de legenda em HTML
- 24-07-2022
- Trung Minh
- 0 Comments
A tag <caption> é usada para definir um título para uma tabela, a tag <caption> deve ser colocada imediatamente após a tag <table>.
Apenas uma <caption> pode ser colocada por tag <table> .
Como usar a tag <caption> .
Exemplo : definir legenda para quadro de poupança
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; } </style> </head> <body> <table> <caption>Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$50</td> </tr> </table> </body> </html>
Atributo da tag <caption> .
A tag <caption> é suportada por todos os atributos globais em HTML.