html - Table layout colspan rowspan -
i'm trying table don't understand how white td
.
this have tried:
<table style="width:100%"> <tr> <td rowspan="2"></td> <td rowspan="2">capacidad</td> <td colspan="3">precios por hora</td> <td>1er</td> <td>1 semana</td> <td>>1 semana</td> </tr> </table>
this code results in last 3 td
being right after precios por hora
not below.
any on this?
i think mean?
<table width='100%'> <tr> <td rowspan='2'>capacidad</td> <td colspan='3'>precios por hora</td> </tr> <tr> <td>1er</td> <td>1 semana</td> <td>1 semana</td> </tr> </table>
Comments
Post a Comment