Skip to content
New issue

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

css实现多行文本超出省略号处理 #38

Open
yangsirgo opened this issue Dec 10, 2019 · 0 comments
Open

css实现多行文本超出省略号处理 #38

yangsirgo opened this issue Dec 10, 2019 · 0 comments

Comments

@yangsirgo
Copy link
Owner

yangsirgo commented Dec 10, 2019

第一种方式是使用 -webkit-line-clamp 实现
代码:

div {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

demo地址
-webkit-line-clamp 只有webkit内核浏览器支持。

第二种方式是 float 特性实现多行文本截断(真牛逼)
demo地址
具体解释详见

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant