css 文字超出省略号
# 单行省略号
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
# 多行省略号
display: -webkit-box;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden
# 单行省略号
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden
# 多行省略号
display: -webkit-box;
text-overflow: ellipsis;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden
display: flex;
justify-content: space-between