-o-ellipsis-lastline
by Cople
HTML
<p>Opera 10.60 has added the ability to clip text on multi-line blocks. If text spans more than one line, the -o-ellipsis-lastline value can be specified. As the name suggests this will add an ellipsis to the last line of visible text. The ellipsis-lastline value is currently not in any specifications so must be used with the -o- prefix.</p>
CSS
p {
overflow: hidden;
white-space: normal;
height: 3em;
text-overflow: -o-ellipsis-lastline;
}