Heres the entire page * wrappable is defined in a main.css file
/* Wrappable cell
* Add this class to make sure the text in a cell will wrap.
* By default, d
Its works for me.
<style type="text/css">
td {
/* css-3 */
white-space: -o-pre-wrap;
word-wrap: break-word;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
}
And table attribute is:
table {
table-layout: fixed;
width: 100%
}
Just add: word-break: break-word;
to you table class.
If you want fix the column you should set width. For example:
<td style="width:100px;">some data</td>