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
Albers answer did the trick for me
.the-table { table-layout: fixed; word-wrap: break-word; }
In the JS to load it dynamically add
$("#" + tableName ).addClass('the-table');
Hope it helps!!