Home > Article > Web Front-end > How to Truncate Table Cells Evenly When Content Overflow Occurs?
Evenly Truncating Table Cells
Fred, a table with a fluctuating apartment space, faces the challenge of fitting varying content within his cells. When faced with excess content, Fred resorts to truncating one cell's content to prevent overflowing the table's width. However, he suspects that a better solution may exist where all cells contribute equally to content truncation.
To address Fred's concern, the following approach can be employed:
<table border="1" style="width: 100%;"> <colgroup> <col width="100%" /> <col width="0%" /> </colgroup> <tr> <td style="white-space: nowrap; text-overflow:ellipsis; overflow: hidden; max-width:1px;"> This cell has more content.This cell has more content.This cell has more content.This cell has more content.This cell has more content.This cell has more content. </td> <td style="white-space: nowrap;"> Less content here. </td> </tr> </table>
In this solution:
This approach ensures that when there's sufficient space, all cells will display their full content. However, when there's insufficient space, the first cell's content will be truncated first, giving the second cell extra space to display its content.
The above is the detailed content of How to Truncate Table Cells Evenly When Content Overflow Occurs?. For more information, please follow other related articles on the PHP Chinese website!