I have a text overflow problem: ellipsis. I want to put the icon after three dots, but the icon is always displayed on the next line (due to the display: block property). Is there any way to display this line?

My fiddle and css example :
.title {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
display: block;
width: 200px;
}
source
share