html - Table layout colspan rowspan -


i'm trying table don't understand how white td.

enter image description here

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

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -