实现单行
.nowrap{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
实现多行:
display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
关于css实现单行、多行省略标记:http://www.cnblogs.com/moutudou/p/7077705.html
时间: 2024-10-13 12:07:33