por dos filas pero la ultima columna es para escoger una fecha
entonces quiero dividirla en tres columnas
como hago eso...

|
|
#2 (permalink) |
![]() |
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> |
|
|
|
![]() |
| Herramientas | |
| Desplegado | |
|
|