Top "Ellipsis" questions

An ellipsis is a series of dots, (usually 3, i.e. "…") used to indicate the omission of a word within some text, or more commonly that the preceding text has been truncated.

using text-overflow:ellipsis; only when reaching 3 lines in a div

this is my css snippet .test{ width:150px; height:60px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; -o-text-overflow: ellipsis; } what it …

javascript ellipsis css