Currently to limit a text box vertically, and add ellipsis, there only is a webkit css3 solution using line-clamp & box-orient.
Demo (safari or chrome): http://jsfiddle.net/ArKeu/136/
Now this is not supported anywhere else, not even using prefixes. So my question is if it is possible to do this easily in pure javascript. In short, let a sentence flow on multiple lines and add stop it after a couple while adding ellipsis.
Thanks for your help.