T
T
tosterComposter12016-05-30 12:38:23
css
tosterComposter1, 2016-05-30 12:38:23

How to display an incomplete sentence with an ellipsis at the end?

I'm using backbone, I'm displaying text from the model like {{ text }} on the page, how can I display only part of the text and add an ellipsis at the end if the text is too long (for example, does not fit in 2 lines)?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dark Hole, 2016-05-30
@tosterComposter1

css

.box {
    width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

Here are other options

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question