Prevent text from overlap table td width

前端 未结 5 934
隐瞒了意图╮
隐瞒了意图╮ 2020-12-09 02:29

How can I restrict the table entry to expanding over the entire screen when the entry is too long?

5条回答
  •  爱一瞬间的悲伤
    2020-12-09 02:55

    You need to specify BOTH the max-width and display styles (because the display attribute is set funny because it's a td, not a normal element) e.g.

    td{
        max-width: 100px;
        display: inline-block;
    }
    

提交回复
热议问题