Bootstrap tables overflowing with long unspaced text

前端 未结 5 1222
谎友^
谎友^ 2020-12-23 12:56

I\'m using Bootstrap and I have a table with a few columns, the last of which sometimes has a long piece of text without spaces. I noticed that under certain screen sizes, t

5条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-23 13:58

    This works without forcing table layout to be fixed Just add it to td or any

    .is-breakable {
      word-break: break-word;
    }
    

提交回复
热议问题