How to add ellipsis on your text using CSS
So here's a neat trick that you guys may or may not know. While working I often have to need to hide some large text so that it doesn't screw my UI design, so I use ellipsis to hide large texts.
.desc {
overflow: hidden;
text-overflow: ellipsis;
...
revengemiroz.hashnode.dev1 min read