Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/12/2012, 12:11
Avatar de ocesitaro
ocesitaro
 
Fecha de Ingreso: diciembre-2011
Ubicación: Carabayllo
Mensajes: 274
Antigüedad: 12 años, 4 meses
Puntos: 36
Respuesta: Estructuras con <table>, cerebro roto.

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Tabla</title>
  5. <style type="text/css">
  6. table{ border-collapse:collapse;}
  7. table tr td{ border:solid 1px #000000; text-align:center;}
  8. </head>
  9.  
  10.     <tr>
  11.         <td colspan="2" rowspan="2">1</td>
  12.         <td colspan="2">2</td>
  13.         <td colspan="3">3</td>
  14.     </tr>
  15.     <tr>
  16.         <td colspan="3">4</td>
  17.         <td colspan="2">5</td>
  18.     </tr>
  19.     <tr>
  20.         <td colspan="3">6</td>
  21.         <td colspan="3">7</td>
  22.         <td rowspan="3">15</td>
  23.     </tr>
  24.     <tr>
  25.         <td colspan="2">8</td>
  26.         <td colspan="2">9</td>
  27.         <td colspan="2">10</td>
  28.     </tr>
  29.     <tr>
  30.         <td>11</td>
  31.         <td colspan="2">12</td>
  32.         <td>13</td>
  33.         <td colspan="2">14</td>
  34.     </tr>
  35. </body>
  36. </html>