Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/04/2008, 01:04
Avatar de mgusdl
mgusdl
 
Fecha de Ingreso: abril-2007
Ubicación: Malaga, España
Mensajes: 190
Antigüedad: 17 años
Puntos: 5
Re: Poner tres columnas dentro de una columna

Combina la cabecera
Código HTML:
<table>
  <tr>
    <th>nombre</th>
    <th>apellidos</th>
    <th colspan="3">fecha</th>
  </tr>
<thead>
</thead>
<tbody>
  <tr>
    <td>pepe</td>
    <td>martinez</td>
    <td>15</td>
    <td>04</td>
    <td>2008</td>
  </tr>
  <tr>
    <td>juan</td>
    <td>martinez</td>
    <td>15</td>
    <td>04</td>
    <td>2008</td>
  </tr>
</tbody>
</table>