【CSS】内容溢出省略号

1、单行文字

overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;

2、多行文字

display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:3;
overflow:hidden;

你可能感兴趣的:(【CSS】内容溢出省略号)