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.
Questions tagged [ellipsis]
737 questions
168
votes
4 answers
Why does 1...1 evaluate to 10.1?
I've just faced a little PHP snippet from 3v4l: https://3v4l.org/jmrZB
echo 1...1; //10.1
And I'm afraid I have no idea how to explain its results. Why is this considered valid at all?

Gino Pane
- 4,740
- 5
- 31
- 46
162
votes
12 answers
Why doesn't CSS ellipsis work in table cell?
Consider the following example: (live demo here)
$(function() {
console.log("width = " + $("td").width());
});
td {
border: 1px solid black;
width: 50px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}