css truncate long text code example
Example 1: css overflow truncate
//Truncate text overflow
.element {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Example 2: text overflow ellipsis 1 line
.truncate {
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}