estudents photograph




Por medio de las etiquetas <caption>...</caption> podemos colocar un título a una tabla.
El caption posee el atributo align="top/ bottom". top alinea el título arriba de la tabla y bottom lo muestra debajo de la tabla.

Vease el siguiente, ejemplo:
       
<table>
     <caption align="bottom"> título </caption>
     <tr>
       <td> celda(1,1) </td>
       <td> celda (1,2) </td>
     <tr>
     <tr>
	 <td> celda (2,1) </td>
	 <td> celda (2,2) </td>
    </tr>
 </table>

se mostrará:

título
celda(1,1) celda (1,2)
Celda (2,1) celda (2,2)


Cabeceras

Las etiquetas <th>...</th> definen las cabeceras de la tabla (table header). Esta etiqueta produce el efecto de visualizar el texto centrado y en negrita:
       
<table>
   <tr>
      <th> Cabecera 1 </th>
      <th> Cabecera 2 </th>
      <th> Cabecera 3 </th>
   </tr>
   <tr>
      <td> A </td>
      <td> B </td>
      <td> C </td>
   </tr>
 </table>

se mostrarĂ¡:

Cabecera 1 Cabecera 2 Cabecera 3
a b c
d e f

=1){ ?> < < > >
© 2006 Pc Web.es