I\'ve been using word-wrap: break-word to wrap text in divs and spans. However, it doesn\'t seem to work in table cells. I have a tabl
word-wrap: break-word
div
span
Tables wrap by default, so make sure the display of the table cells are table-cell:
table-cell
td { display: table-cell; }