**Estou tentando truncar um texto dentro de uma célula. **
CSS.
.table-size { width: 1085px;}
.table-size tr { font-family: sans-serif; font-size: 10px;}
.table-size tr td { vertical-align: baseline; padding-left: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
Html
<table class='table-size' cellspacing="0">
<tr>
<td width ='30px' style='background-color: #D3D3D3;'>Cód.</td>
<td width ='45px' style='background-color: #D3D3D3;'>Contrato</td>
<td width ='45px' style='background-color: #D3D3D3;'>Evento</td>
<td width ='30px' style='background-color: #D3D3D3;'>Hora</td>
<td width ='30px' style='background-color: #D3D3D3;'>Conv.</td>
<td width ='45px' style='background-color: #D3D3D3; text-align: right;' >Valor</td>
<td width ='270px' style='background-color: #D3D3D3; text-align: right;'>Cliente</td>
<td width ='200px' style='background-color: #D3D3D3;'>Telefone</td>
<td width ='390px' style='background-color: #D3D3D3;'>Pacote</td>
</tr>
<tr>
<td width ='30px'>{{$evento->idfesta}}</td>
<td width ='45px' >{{date("d/m/Y", strtotime($evento->dtcontrato))}}</td>
<td width ='45px' >{{date("d/m/Y", strtotime($evento->dtfesta))}}</td>
<td width ='30px' >{{$evento->horainicio}}</td>
<td width ='30px >{{$evento->nupessoas}}</td>
<td width ='45px' style='text-align: right;'>{{number_format($evento->vltotalevento, 2, ',' ,'.')}}</td>
<td width ='270px' style='font-size: 10px;'>{{mb_convert_encoding($evento->nmcliente,'UTF-8','ISO-8859-1')}}</td>
<td width ='200px' style='font-size: 10px;'>{{$evento->telefone}}</td>
<td width ='390px' style='font-size: 10px;'>{{mb_convert_encoding($evento->descricao, 'UTF-8', 'ISO-8859-1')}}</td>
</tr>
</table>
Ao invés do texto truncar, em relação ao tamanha da célula, a célula está expandindo em relação ao tamanho do texto. Alguém tem uma ideia de onde estou errando?