chpxl2
Results
1
comments of
chpxl2
```css //1:单行文本溢出 .textTruncate { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } //2:按行数-多行文本溢出(兼容性不好) .mulLineTruncate { overflow: hidden; text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } //3:按高度-多行文本溢出(没有省略号) .mulLineTruncate { max-height: 40px; overflow: hidden;...