CSS coding: how to make a text ellipsis

Often you want to shorten the text to make it fit a box and just make it nicer to display, copy/paste the code below to make an ellipsis

.your-class { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

July 4, 2022