css 常用问题处理 - 简解

97 阅读1分钟

css设置超出宽度文本显示...

单行超出:

width:200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

超出两行(多行)显示…

overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;