Ruby Truncate方法在CSS中等效

时间:2017-06-09 14:18:43

标签: html css ruby-on-rails ruby

对于特定数量的字符,CSS中是否存在等效的Ruby truncate方法?

我一直在阅读不同的CSS方法,例如文本溢出:

Setting a max character length in css

但似乎没有直接的解决方案可以在特定数量的字符后复制function Base () { this.name = '123' ; } function Derived () { this.derivedname = 'abc' ; Derived.prototype = new Base() ; } var DerivedObject = new Derived () ; console.log ( DerivedObject.name ) ; 功能,例如:

truncate

1 个答案:

答案 0 :(得分:0)

我找到了这个css here

white-space: nowrap; 
width: 15em; 
overflow: hidden;
text-overflow: ellipsis; 
border: 1px solid #000000;

使用现代浏览器,它似乎可以满足您的期望。