Ver Mensaje Individual
  #4 (permalink)  
Antiguo 05/12/2007, 18:30
Avatar de aloqui
aloqui
 
Fecha de Ingreso: diciembre-2007
Mensajes: 973
Antigüedad: 16 años, 4 meses
Puntos: 24
Re: :: break-word en Firefox? ::

Puedes definir la tabla con tamaño fijo (style="table-layout:fixed") y las celdas con overflow hidden. Ejemplo:

<html>
<head>
<style type="text/css">
.tablaDias { table-layout:fixed; width:90px;}
td { width: 30px; overflow:hidden; }
</style>
</head>
<body>
<table class="tablaDias" border="1">

<tr class="over">
<td>1234567890</td>
<td>AA</td>
<td>BB</td>
</tr>
</table>
</body>
</html>