美文网首页
css文字省略 2019-11-18

css文字省略 2019-11-18

作者: 南台观芸秀 | 来源:发表于2019-11-17 11:49 被阅读0次

单行文字实现2:

text-overflow: ellipsis;

overflow: hidden;

white-space: nowrap;

多行文字实现(有浏览器兼容问题):

overflow: hidden;

-webkit-line-clamp: 3;

-webkit-box-orient: vertical;

display: -webkit-box;

相关文章

网友评论

      本文标题:css文字省略 2019-11-18

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