将
用css.
overflow: hidden; text-overflow:ellipsis
你是否使用响应式的Bootstrap,如果使用!请直接复制以下代码即可
table{
table-layout:fixed;
}
.table tbody tr td{
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
参考一下这篇博客
通过增加列Class直接修饰td、th,首先定义一个文本超长自动省略的CSS Class
http://www.zhuyuan.tech/articles/7
Datatables 文字过长CSS省略