借助 HTML 在表格行内以响应方式截断长文本
若要截断表格行内较长的文本,请使用以下 CSS:-
.table td.demo { max-width: 177px; } .table td.demo span { overflow: hidden; text-overflow: ellipsis; display: inline-block; white-space: nowrap; max-width: 100%; }
以下是 HTML:-
<td class = "demo"> <span>This is demo text and we have made it a long text for a demo.</span> </td>
广告