Last active
March 31, 2024 18:23
-
-
Save pointofpresence/b80554f71b0d13f21c413ff9f55a6bee to your computer and use it in GitHub Desktop.
Ограничение многоточием до трех строк текста
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Простые свойства 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