Overflow: Hidden 不起作用
Overflow: Hidden 通常用於隱藏元素內溢出的內容。然而,當應用於
範例:
<table> <tbody> <tr> <td> This_is_a_terrible_example_of_thinking_outside_the_box. </td> </tr> </tbody> </table>
* { box-sizing: border-box; } table { table-layout: fixed; border-collapse: collapse; width: 100%; max-width: 100px; } td { background: #F00; padding: 20px; overflow: hidden; white-space: nowrap; width: 100px; border: solid 1px #000; }
以上是為什麼「overflow:hidden」對元素不起作用,如何修復它?的詳細內容。更多資訊請關注PHP中文網其他相關文章!