We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
font-size: 16px; line-height: 16px; max-width: 75%; margin-right: 0!important; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; ````
The text was updated successfully, but these errors were encountered:
text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
多行文字实现(有浏览器兼容问题):
overflow: hidden; -webkit-line-clamp: 3; -webkit-box-orient: vertical; display: -webkit-box;
实现文字里的行数多行显示并溢出部分省略号,line-clamp为需要设置的行数
overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; word-break: break-all;
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: