ant design table td 文字显示过长添加省略号、ant 文字过长时添加tootip提示

方法1:

  1. overflow: hidden;
  2.  text-overflow: ellipsis;
  3.  display: -webkit-box;
  4. -webkit-line-clamp: 2;
  5.  -webkit-box-orient: vertical;

 

方法2: 

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 400px;


3、添加toottip 提示

 

代码如下:

<td>
<a-tooltip>
<template slot='title'>
{{item.projectContent}}
</template>
<span class="ecllipsis">
{{item.projectContent}}
</span>
</a-tooltip>
</td>
 
posted @ 2019-05-23 17:52  shuihanxiao  阅读(6696)  评论(0编辑  收藏  举报