Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/05/2009, 04:32
Avatar de abimaelrc
abimaelrc
Colaborador
 
Fecha de Ingreso: mayo-2009
Ubicación: En el planeta de Puerto Rico
Mensajes: 14.734
Antigüedad: 15 años, 6 meses
Puntos: 1517
Respuesta: Ajustar tabla

Trata en los td escribir con php

$texto = "kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk kkkk";
<td><?php echo wordwrap($texto, 8, "\n", 1); ?></td>

sino el overflow tienes que hacerlo dentro de un div y que sea dentro del td ejemplo

<table>
<tr>
<td><div style="overflow: auto; width: 80px;">kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk kkkkkk</div></td>
</tr>
</table>

Última edición por abimaelrc; 25/05/2009 a las 04:38