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

文字省略 #9

Open
AlexZ33 opened this issue Nov 25, 2019 · 1 comment
Open

文字省略 #9

AlexZ33 opened this issue Nov 25, 2019 · 1 comment

Comments

@AlexZ33
Copy link
Owner

AlexZ33 commented Nov 25, 2019

image


    font-size: 16px;
    line-height: 16px;
    max-width: 75%;
    margin-right: 0!important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
````
@AlexZ33
Copy link
Owner Author

AlexZ33 commented Nov 25, 2019

单行文字实现


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;

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