I have a long text inside a div with defined width:

HTML:

<div>Stack Overflow is the BEST!!!</div>

CSS:

div {
    border: 1px solid black;
    width: 70px;
}

How could I force the string to stay in one line (i.e., to be cut in the middle of “Overflow”)?

I tried to use overflow: hidden, but it didn’t help.

10 Answers
10

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *