对于特定数量的字符,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
答案 0 :(得分:0)
我找到了这个css here:
white-space: nowrap;
width: 15em;
overflow: hidden;
text-overflow: ellipsis;
border: 1px solid #000000;
使用现代浏览器,它似乎可以满足您的期望。