方法1:web
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -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>