关于文本截断的问题
表格或者Label里面往往要涉及到,文本过长要截断显示的情况。
BS里面有没有好的方法,或者直接调用的css类?
我现在就是傻傻的用style="overflow:hidden;text-overflow:ellipsis;white-space: nowrap; "来实现的,太麻烦了。
BS里面有没有好的方法,或者直接调用的css类?
我现在就是傻傻的用style="overflow:hidden;text-overflow:ellipsis;white-space: nowrap; "来实现的,太麻烦了。
2 个回复
叶绛攸
赞同来自:
.cut {
overflow:hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
然后别处引用就好了。
Rirai
赞同来自: