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>
 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM