css 实现单行省略 和多行省略
单行省略
{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

多行省略
{
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}


浙公网安备 33010602011771号