超过指定宽度的文字缩略为省略号“...”特效的实现代码

css中设置为:

  .bulletin-wrapper
    position: relative
    height: 28px
    line-height: 28px
    padding: 0 20px 0 12px
    white-space: nowrap // 下面3行代码实现...效果
    overflow: hidden
    text-overflow: ellipsis
    background-color: rgba(7, 17, 27, 0.2)

猜你喜欢

转载自blog.csdn.net/SilenceJude/article/details/82221486