Ir direto para menu de acessibilidade.
Início do conteúdo da página

Tabelas

Tabelas

Padrão para tabelas

<table class="category table table-striped table-bordered table-hover"> Início da tabela

<thead> Cabeçalho
<tr>
<th id="categorylist_header_title"Título da tabela </th>
</tr>
</thead>

<tbody> Corpo
<tr>
<td> Conteúdo </td>
</tr>
</tbody>

</table> Fim da tabela

Importante: observar que as tags referentes a uma célula de cabeçalho (<th> e </th>) são diferentes daquelas referentes às células do corpo (<td> e </td>)

 

Versão para Ctrl C + Ctrl V

<table class="category table table-striped table-bordered table-hover">
<thead>
<tr>
<th id="categorylist_header_title">Título da tabela</th>
</tr>
</thead>
<tbody>
<tr>
<td>Conteúdo</td>
</tr>
</tbody>
</table>

 

Padrão para tabelas "simples" (corpo de Portarias, Resoluções, etc.)

<table class="simples">

<thead>
<tr>
<th>Célula 1</th>
<th>Célula 2</th>
<th>Célula 3</th>
</tr>
</thead>

<tbody>
<tr>
<td>Conteúdo 1</td>
<td>Conteúdo 2</td>
<td>Conteúdo 3</td>
</tr>
</tbody>

</table>


Resultado:

Célula 1Célula 2Célula 3
Conteúdo 1 Conteúdo 2 Conteúdo 3

 

Tabela para Credenciamento Docente

<table class="simples">
<thead>
<tr><th>Nome</th><th>Área/Subárea em que tomou posse</th><th>Bacharelado Interdisciplinar</th></tr>
</thead>
<tbody>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>

Topo

 

As tabelas podem ser substituídas

Grid

1
1
1
1
1
1
1
1
1
1
1
1

 

.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
.col-md-1
Registrado em: Convenções de publicação
Fim do conteúdo da página