记一下永远背不下来的单行省略和多行省略代码

单行省略:

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

 

多行省略:

 overflow: hidden;     max-height: 44px;     text-overflow: ellipsis;     -webkit-box-orient: vertical;     word-break:break-word;     /* autoprefixer: off */     display:-webkit-box;     -webkit-box-orient:vertical;     -webkit-line-clamp:2;     /* autoprefixer: on */     (注释掉的部分是为了保证编译时这种旧代码不丢失)
上一篇:css3的box方法实现水平垂直居中


下一篇:Python项目实战:绕圈圈面试题