均勻截斷表格單元格
Fred 是公寓空間不斷變化的表格,面臨著在單元格中容納不同內容的挑戰。當面對過多的內容時,Fred 會採取截斷一個儲存格的內容來防止溢位表格的寬度。然而,他懷疑可能存在更好的解決方案,即所有單元格對內容截斷的貢獻相同。
為了解決Fred 的擔憂,可以採用以下方法:
<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>
在此解決方案中:
這種方法確保當有足夠的空間時,所有單元格都會顯示其完整內容。但是,當空間不足時,第一個單元格的內容將首先被截斷,為第二個單元格提供額外的空間來顯示其內容。
以上是發生內容溢位時如何均勻截斷表格儲存格?的詳細內容。更多資訊請關注PHP中文網其他相關文章!