美文网首页
html纯css实现单行以及多行文字省略

html纯css实现单行以及多行文字省略

作者: Wanlly | 来源:发表于2019-11-12 10:32 被阅读0次

复制粘贴代码即可使用,记住一定要设置width行宽,不然无效!

单行文字省略:

width: 200px;

overflow:hidden;

text-overflow:ellipsis;

white-space: nowrap;

多行文字省略:

width: 150px;

display: -webkit-box;

 -webkit-box-orient: vertical;

 -webkit-line-clamp: 3;  /* 省略后保留的行数 */

 overflow: hidden;

相关文章

网友评论

      本文标题:html纯css实现单行以及多行文字省略

      本文链接:https://www.haomeiwen.com/subject/jjefictx.html