Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Elbrinner

tabelas com tableless

Recommended Posts

Estive buscando uma forma de fazer as tabelas, a principio pensei em fazer com div mais acabei cometendo alguns erros.Dai comecei a buscar pelo google a fora e vi esse exemplo:

<table> <caption>texto</caption><thead> <tr> <th> texto </th> <th> texto </th> <th> texto </th> <th> texto </th> </tr> </thead> <tfoot> </tfoot> <tbody> <tr > <th> texto </th> <td> texto </td> <td> texto </td> <td> texto </td> </tr> </tbody></table>

Se pode fazer assim?

Compartilhar este post


Link para o post
Compartilhar em outros sites

no <tbody> naum precisa do <th>, soh do td mesmo:

e se naum vai utilizar o <tfoot>, naum precisa declará-lo:

<table><caption>texto</caption><thead><tr><th> texto </th><th> texto </th><th> texto </th><th> texto </th></tr></thead><tbody><tr ><td> texto </td><td> texto </td><td> texto </td><td> texto </td></tr></tbody></table>

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.