美文网首页
iview table表格中实现td字数过多时用省略号替代

iview table表格中实现td字数过多时用省略号替代

作者: web30 | 来源:发表于2020-05-29 11:31 被阅读0次
    需求

    表格中某一栏字数过多时,不需要自动换行显示,只显示前面一部分后面的用省略号替代

    效果
    效果图
    代码
    <table class="tb-void" style="table-layout: fixed">
      <thead>
        <tr>
          <th width="18%">商品清单</th>
        </tr>
      </thead>
      <tbodey>
        <tr>
          <td style="white-space: nowrap;text-overflow: ellipsis;overflow: hidden></td>
        </tr>
      </tbodey>
    </table>
    

    相关文章

      网友评论

          本文标题:iview table表格中实现td字数过多时用省略号替代

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