美文网首页
前端页面 单行/多行文本超出(...)

前端页面 单行/多行文本超出(...)

作者: 无题syl | 来源:发表于2020-11-20 16:37 被阅读0次

单行样式

.break {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

多行样式

               overflow: hidden;
              text-overflow: ellipsis;
              display: -webkit-box;
              -webkit-line-clamp: 2;
              -webkit-box-orient: vertical;
row....png

相关文章

网友评论

      本文标题:前端页面 单行/多行文本超出(...)

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