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
If you do not need a table border, apply this:
table{ table-layout:fixed; border-collapse:collapse; } td{ word-wrap: break-word; }