Is it possible to limit a text length to \"n\" lines using CSS (or cut it when overflows vertically).
text-overflow: ellipsis; only works for 1 line tex
As far as I can see, this would be possible only using height: (some em value); overflow: hidden and even then it wouldn't have the fancy ... at the end.
If that is not an option, I think it's impossible without some server side pre-processing (difficult because text flow is impossible to predict reliably) or jQuery (possible but probably complicated).