table中的td内容超出隐藏

<table style="table-layout: fixed; XXX px">
    <tr>
          <td style="white-space: nowrap;text-overflow: ellipsis;overflow: hidden;" ></td>
    </tr>
</table>

table标签需要设定属性 table-layout: fixed;XXXpx;

在要超出隐藏的td标签上设定属性  white-space: nowrap;text-overflow: ellipsis;overflow: hidden; 

不要忘了给table加个宽度 

摘自:http://www.cnblogs.com/wwcherish/archive/2013/08/20/3269754.html

原文地址:https://www.cnblogs.com/hjbky/p/7505182.html