css文字超出一行就显示省略号

css文字超出一行就显示省略号

 

1,css超出一行用点表示

white-space:nowrap;

overflow:hidden;

text-overflow:ellipsis;

 

2,css超出二行用点表示

overflow:hidden;

text-overflow:ellipsis;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:2;

 

1,css超出一行用点表示

white-space:nowrap;

overflow:hidden;

text-overflow:ellipsis;

 

2,css超出二行用点表示

overflow:hidden;

text-overflow:ellipsis;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:2;

 

相关文章

Css常用的排序方式权重分配 排序方式: 1、按类型 ...
原文:https://www.cnblogs.com/wenruo/p/9732704.html 先上...
css属性:word-wrap:break-word; 与 word-break:break-all 的...
https://destiny001.gitee.io/color/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML...
css之background的cover和contain的缩放背景图 对于这两个属...