让table中的td不会被过长的文字撑开,并且自动出现省略号

<style type="text/css">
table {600px;table-layout:fixed;}
td
{white-space:nowrap;overflow:hidden;word-break:keep-all;text-overflow:ellipsis}

</style>
<table border=1 >
<tr>
<td
width="30%">dd</td>

<td>ddddddddddddddddddddddddddddddfsljdflsajufiajklsjadflkjsalkfdjdsklajdflksajflksajfdlkdsjdflksjfjldskajdflksajflskajf</td>

<td width="30%">dd</td>
</tr>
</table>

原文地址:https://www.cnblogs.com/weiweithe/p/4223409.html