css中DIV中字过多时,使用省略号的方法
<div style="
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
width: 218px;">
{{ data.label }}
</div>
一定要给宽度!!!!
<div style="
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
width: 218px;">
{{ data.label }}
</div>
一定要给宽度!!!!