to add ellipsis to a sentence that is too long you can use this method: http://jsfiddle.net/ArKeu/
that works great for widths but is it somehow possible to add ellipsis vertically too? that doesn't seem to work :(
does anyone know this, Thanks.
to add ellipsis to a sentence that is too long you can use this method: http://jsfiddle.net/ArKeu/
that works great for widths but is it somehow possible to add ellipsis vertically too? that doesn't seem to work :(
does anyone know this, Thanks.
Currently there is no cross-browser CSS-only way to achieve such behavior.
You can do this now only in webkit-based browsers by using the -webkit-box and -webkit-line-clamp, see http://jsfiddle.net/ArKeu/7/
The css rule boils down to:
your-css-selector {
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 7;
-webkit-box-orient: vertical;
}
Where the number value for -webkit-line-clamp is the maximal number of lines you want to be displayed.
text-overflow: ellipsis is unnecessary. -webkit-line-clamp adds an ellipsis by itself.UPDATE! UPDATE! UPDATE!
Since the time when I wrote that answer, Clamp.js seems to have cooled-off and died. The project still exists on github so you can check it out.
But, there is a better alternative here: ftellipsis. It is cross-browser.
Why should webkit browsers have all the fun?
This solution here is much more extensive, and provides support for other browsers as well.
http://reusablebits.com/post/2642059628/introducing-clamp-js (dead link)
CSS Overflow Module Level 4 is a W3C specification which, as of 2023-05-08, is in Working Draft state.
It defines a CSS property called line-clamp which accomplishes your goals. It is based on the earlier Webkit property, mentioned in kizu's answer; and as such, the evolving specification continues to be available in most browsers with the -webkit- prefix.
I will update this answer as the CSS Overflow Module Level 4 specification advances.
box-orient will not be required. From the draft: "Implementations of the legacy -webkit-line-clamp property have not behaved identically to what is specified here. The historical behavior is quirky and less robust... The current design learns from the mistakes of that early experiment, and is intended to be sufficiently compatible with existing content that implementations can eventually be changed to follow to the specified behavior. If further adjustments are found to be necessary, they will be incorporated to this specification."