关于文本截断的问题

表格或者Label里面往往要涉及到,文本过长要截断显示的情况。
BS里面有没有好的方法,或者直接调用的css类?
我现在就是傻傻的用style="overflow:hidden;text-overflow:ellipsis;white-space: nowrap; "来实现的,太麻烦了。
已邀请:

叶绛攸

赞同来自:

你写的这个自己写成一个类
.cut {
overflow:hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
然后别处引用就好了。

Rirai

赞同来自:

谢谢,我现在就是这么干的。

要回复问题请先登录注册