Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/11/2011, 06:39
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 16 años, 10 meses
Puntos: 1567
Respuesta: Problema con pagina web

Dos variantes

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. </head>
  7. <body>
  8. <table width="100%" border="1">
  9.     <colgroup>
  10.         <col width="5%" /><col width="5%" />
  11.         <col width="5%" /><col width="5%" />
  12.         <col width="5%" /><col width="5%" />
  13.         <col width="5%" /><col width="5%" />
  14.         <col width="5%" /><col width="5%" />
  15.         <col width="5%" /><col width="5%" />
  16.         <col width="5%" /><col width="5%" />
  17.         <col width="5%" /><col width="5%" />
  18.         <col width="5%" /><col width="5%" />
  19.         <col width="5%" /><col width="5%" />
  20.     </colgroup>
  21.     <tr>
  22.         <td colspan="5">25</td>
  23.         <td colspan="10">50</td>
  24.         <td colspan="5">25</td>
  25.     </tr>
  26.     <tr>
  27.         <td colspan="10">50</td>
  28.         <td colspan="6">30</td>
  29.         <td colspan="4">20</td>
  30.     </tr>
  31. </table>
  32. </body>
  33. </html>

La solución más común y facil es usar una tabla anidada

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <style type="text/css">
  7. /*<![CDATA[*/
  8. td {
  9. text-align: center;
  10. }
  11. /*]]>*/
  12. </head>
  13. <table border="1">
  14. <tr>
  15. <td width="200">a</td>
  16. <td width="200">botonera</td>
  17. <td width="200">c</td>
  18. </tr>
  19.  
  20. <tr>
  21. <td colspan="3">
  22.  
  23. <table border="1">
  24. <tr>
  25. <td width="300">d</td>
  26. <td width="100">e</td>
  27. <td width="300">f</td>
  28. </tr>
  29.  
  30. </td>
  31. </tr>
  32. </body>
  33. </html>

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.