1

我想添加令人敬畏的字体图标,并以文本可以不变形的文本结尾

文字...[图标]

在此处输入图像描述

4

2 回答 2

1

这是答案,并且工作正常

**.ui-table .ui-table-thead>tr>th, .ui-table .ui-table-tbody>tr>td, .ui-table .ui-table-tfoot>tr>td {
max-width: 100px !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
white-space: nowrap !important;

}**

于 2019-02-22T11:44:25.597 回答
0

试试这个代码

<td class="nowrap">
  <span>This is the long text This is the long text</span>
  <span><i class="fa fa-info-circle"></i></span>
</td>

.nowrap {
  white-space: nowrap;
}
于 2019-02-14T11:20:31.383 回答