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

方法1:web

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

 

方法2: spa

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


三、添加toottip 提示

 

代码以下:code

<td>
<a-tooltip>
<template slot='title'>
{{item.projectContent}}
</template>
<span class="ecllipsis">
{{item.projectContent}}
</span>
</a-tooltip>
</td>
相关文章
相关标签/搜索