记一下永远背不下来的单行省略和多行省略代码
单行省略:
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 */
(注释掉的部分是为了保证编译时这种旧代码不丢失)
相关推荐
zhanghao 2020-06-16
RexLeee 2019-12-23
王为仁 2015-05-27
AlisaClass 2015-12-29
zhanghao 2018-01-05
沉着前进 2018-01-05
huakaiwuxing 2015-12-29
AlisaClass 2015-05-27
sdbxpjzq 2014-01-15
xvzhengyang 2013-08-15
walliam 2013-07-24
gigipop 2013-05-06
impress 2013-04-09
impress 2012-11-29
teresalxm 2012-11-18
pworld 2012-09-26
新海说 2014-05-19