Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active March 31, 2024 18:23
Show Gist options
  • Save pointofpresence/b80554f71b0d13f21c413ff9f55a6bee to your computer and use it in GitHub Desktop.
Save pointofpresence/b80554f71b0d13f21c413ff9f55a6bee to your computer and use it in GitHub Desktop.
Ограничение многоточием до трех строк текста
Простые свойства CSS могут помочь. Ниже приведено трехстрочное многоточие.
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment