How can one change the text from displaying like abcdefghijklmnopqrstuvwxyz in a cell to :
abc
def
ghi
...?
I can either hide some of the text (abcdef...) or make it appear as a verry ugly long cell.
I would like to do so in HTML or CSS. I already tried playing with line-height, height, display,...
Example code: http://jsfiddle.net/9jwMZ/1/ (I am referring to the Message column).
For example, why isn't this code working?:
table.DataTable tr {
line-heigth: 100px;
}