-
Notifications
You must be signed in to change notification settings - Fork 2
Estrutura "tabela"
Vitor Brandão edited this page Oct 3, 2023
·
1 revision
A estrutura <tabela>
representa dados tabulares — isto é, informações apresentadas em uma tabela bidimensional composta por linhas e colunas de células contendo dados.
<tabela>
<linha>
<celula> John </celula>
<celula> Doe </celula>
</linha>
<linha>
<celula> Jane </celula>
<celula> Doe </celula>
</linha>
</tabela>
Suporta todos os atributos globais do HTML.
<tabela>
é traduzido em HTML como <table>
.