1.在td标签中style添加:

white-space:nowrap;/*文本不会换行,在同一行显示*/
overflow:hidden;/*超出隐藏 */
text-overflow:ellipsis;/*省略号显示*/
title=“完整内容” /*鼠标悬浮展示*/

例子:

<table style="table-layout: fixed;width:10%" >

<td style="overflow:hidden;text-overflow:ellipsis;white-space:nowrap;" title="${contractMateriel.materiel.specification}">

 


</table>