Ver Mensaje Individual
  #1 (permalink)  
Antiguo 18/07/2013, 12:08
Avatar de pampa_
pampa_
 
Fecha de Ingreso: mayo-2006
Mensajes: 334
Antigüedad: 18 años
Puntos: 1
Problema tabla

Hola a todos!

Tengo un pequeño problema con una tabla, el tema es el siguiente, con este codigo.

Código HTML:
Ver original
  1. <table style="margin:10px 0px 0px 0px; width:273px; border:1px solid #33Acac;">
  2.     <tr>
  3.         <td style="border:1px solid #c5c5c5; font-family: arial, sans serif; font-size: 16px; color: #727773; font-weight:bolder;"><span style="position:relative; right:1px;">ULTIMOS INMUEBLES</span></td>   
  4.     </tr>
  5.     <tr>
  6.         <td style="border:1px solid #c5c5c5;">
  7.             <table style="position:relative; left:19px; ">
  8.                 <tr>
  9.                     <td rowspan="3" style="border:1px solid #c5c5c5; border-bottom-style: dotted;  padding: 5px 0px 0px 0px; valign:top;"><img src="<?php bloginfo('template_url'); ?>/images/punto-gris.png" width="30px" height="30px" alt="" border="0"></td>
  10.                     <td style="border:1px solid #c5c5c5; border-bottom-style: dotted;  padding: 5px 0px 5px 0px; valign:top;"><img src="<?php bloginfo('template_url'); ?>/images/punto-gris.png" width="3px" height="3px" alt="" border="0"><?php echo($valorHabitaciones_single) ?></td>         
  11.                 </tr>
  12.                 <tr>               
  13.                     <td style="border:1px solid #c5c5c5; border-bottom-style: dotted;  padding: 5px 0px 5px 0px;"><img src="<?php bloginfo('template_url'); ?>/images/punto-gris.png" width="3px" height="3px" alt="" border="0"><?php echo($valorHabitaciones_single) ?></td>             
  14.                 </tr>
  15.                 <tr>                   
  16.                     <td style="border:1px solid #c5c5c5; border-bottom-style: dotted;  padding: 5px 0px 5px 0px;"><img src="<?php bloginfo('template_url'); ?>/images/punto-gris.png" width="3px" height="3px" alt="" border="0"><?php echo($valorHabitaciones_single) ?></td>         
  17.                 </tr>
  18.             </table>
  19.         <td>
  20.     </tr>

En la segunda columna la primera fila le da mucha altura, como puedo hacer para que sea menor, con el height no hace caso.


Gracias.