一行

white-space: nowrap;//强制一行显示
overflow: hidden;//超出隐藏
text-overflow: ellipsis;//省略号

多行

text-overflow: -o-ellipsis-lastline;
overflow: hidden;//溢出内容隐藏
text-overflow: ellipsis;// 省略号
display: -webkit-box;//特别显示模式
-webkit-line-clamp: 2;//行数
line-clamp: 2;//行数
-webkit-box-orient: vertical;//盒子中内容竖直排列