how to make a long and short text looks the same in html code example
Example: text overflow ellipsis css
div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}