我想添加令人敬畏的字体图标,并以文本可以不变形的文本结尾
文字...[图标]
这是答案,并且工作正常
**.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;
}**
试试这个代码
<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;
}