css - 超过两行,超过一行省略号
//父级 加
display: -webkit-box;
display:flex;
//多行
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
white-space: normal;
//单行
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;