How do i use WORD-BREAK:BREAK-ALL; in html tables?

Someone told me that to stop long words increasing the width of my table i should style the table to: WORD-BREAK:BREAK-ALL; How would i do this? Could you give an example of a html table with this in please? Thanks

Public Comments

  1. This... probably won't do what you expect it to do. As I understand it, "word-break" is not part of the current CSS implementation. If you want to give it a try, this is how: <table style="word-break:break-all;"> <tr><td>blah</td><td>blah</td></tr> </table>
Powered by Yahoo! Answers