I trying to apply word-wrap in the table cell, but it's not working.
Line wraps if file name contain space, but if space not there my table going out of div.
I also tried word-wrap and width property to table cell.
display: table-cell;
width: 50%;
word-wrap: break-word;
It works with fix width in pixels, but i can't to that because i need to manage design in all width device.
What css i can apply to make word wrap if table cell have no more space to grow ?
Thanks