Table overflowing outside of div

后端 未结 9 2071
鱼传尺愫
鱼传尺愫 2020-11-30 00:17

I\'m trying to stop a table that has width explicitly declared from overflowing outside of its parent div. I presume I can do this in some way using max-w

9条回答
  •  情歌与酒
    2020-11-30 00:49

    overflow-x: auto;
    overflow-y : hidden;
    

    Apply the styling above to the parent div.

提交回复
热议问题