How to force table cell content to wrap?

前端 未结 9 1982
渐次进展
渐次进展 2020-11-28 01:59

Heres the entire page * wrappable is defined in a main.css file

/* Wrappable cell
* Add this class to make sure the text in a cell will wrap.
* By default, d         


        
9条回答
  •  不知归路
    2020-11-28 02:29

    If you are using Bootstrap responsive table, just want to set the maximum width for one particular column and make text wrapping, making the the style of this column as following also works

    max-width:someValue;
    word-wrap:break-word
    

提交回复
热议问题