title属性显示以及文字太多显示不下用..代替

<style>
/*中间内容显示不完*/
.list-content-scroll li{
flex-wrap: nowrap;
display: block!important;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>

<li class="list-item" data-bind="click: $root.GetWidgetInfo, attr: { class: 'list-item WIDGETID' + WIDGET_ID}">
<span data-bind="html: WIDGET_NAME,attr:{ title: WIDGET_NAME}" ></span>
</li>

原文地址:https://www.cnblogs.com/benbenjia/p/9475780.html