Skip to content

Latest commit

 

History

History
15 lines (14 loc) · 335 Bytes

File metadata and controls

15 lines (14 loc) · 335 Bytes

单行文本换行写法: width: 150px; height: 25px; line-height: 25px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;

多行文本换行:(仅支持webkit浏览器) width:150px; overflow : hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;