Skip to content

Instantly share code, notes, and snippets.

@Polkovn1k
Last active December 12, 2023 20:33
Show Gist options
  • Save Polkovn1k/7b4204ef284bb5ca8f771639829cc9f4 to your computer and use it in GitHub Desktop.
Save Polkovn1k/7b4204ef284bb5ca8f771639829cc9f4 to your computer and use it in GitHub Desktop.
ellipsis (...) by css (CSS)
//Многострочный текст. Нельзя задавать padding элементу, иначе работать будет криво
.someSelector {
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
//Однострочный текст
.someSelector {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment