Published
- 1 min read
css force text to be one lin
The solution for this is noted below
css force text to be one lin
Solution
div {
width: 100px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Try other methods by searching on the site. That is if this doesn’t work