-
Notifications
You must be signed in to change notification settings - Fork 0
CSS Tips
EricYang edited this page Oct 8, 2021
·
13 revisions
scrollbar-width: none;
&::-webkit-scrollbar {
display: none;
width: 0;
};- -webkit-line-clamp
display: -webkit-box;
overflow: hidden;
max-height: calc(2*1.15*1.5rem);
line-height: 25px;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;- text-overflow: ellipsis
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;- 用法:容器要有height,overflow: scroll/auto; position: sticky;