美文网首页小程序学习笔记
WX-MiniPrograme|单行、多行文本末尾省略

WX-MiniPrograme|单行、多行文本末尾省略

作者: 红尘丶 | 来源:发表于2018-03-09 13:18 被阅读8次

    多行文本末尾省略...:

    .news-text {

      width: calc(100% - 300rpx);

      line-height: 50rpx;

      display: -webkit-box;

      overflow: hidden;

      text-overflow: ellipsis;

      box-sizing: border-box;

      word-break: break-all;

      -webkit-box-orient: vertical;

      -webkit-line-clamp: 3;

    }

    单行文本末尾...:

    .news-title {

      width: calc(100% - 300rpx);

      line-height: 40rpx;

      display: block;

      overflow: hidden;

      text-overflow: ellipsis;

      white-space: nowrap;

    }

    对比可发现两者差异。

    实例效果:

    相关文章

      网友评论

        本文标题:WX-MiniPrograme|单行、多行文本末尾省略

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