# 超出长度省略号

一行

overflow:hidden; //超出的文本隐藏
text-overflow:ellipsis; //溢出用省略号显示
white-space:nowrap; //溢出不换行
1
2
3

两行

font-size: 20px;
width: 350px;
line-height: 26px;
white-space: normal;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
overflow: hidden;
-webkit-box-orient: vertical;
1
2
3
4
5
6
7
8
9
上次更新: 3/8/2023, 16:15:07