文本超出隐藏

删除回忆录丶 提交于 2019-12-04 10:56:27

1.单行文本超出隐藏

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

2、多行文本超出隐藏

display: -webkit-box;

/* autoprefixer: off*/

-webkit-box-orient: vertical;
/* autoprefixer: on*/

-webkit-line-clamp: 3;
overflow: hidden;

注意:-webkit-box-orient: vertical;这个一定要写成

/* autoprefixer: off*/

-webkit-box-orient: vertical;
/* autoprefixer: on*/

否则编译完成之后会被删除

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!