css限制文字行数

/*限制一行*/
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;(超出用...显示)
/*限制多行*/
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;(行数)
-webkit-box-orient: vertical;

你可能感兴趣的:(css)