December 30 2021, 15:52#

CSS truncate Text with Ellipsis(...) [2020 Tutorial]

Lien : https://daily-dev-tips.com/posts/css-truncate-text-with-ellipsis/

Tronquer du texte avec CSS

Exemple

.truncate {
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

Tags : css web