I need to insert a very large html table in the body of an outlook mail, the problem is that I don't now how to avoid that the columns shrink, practically displaying the text vertically (the text breaks when the number of columns and the characters inside becomes too high, there seems to be a width limit for html tables).
Can anyone help me find a solution to make the whole row visible without wrapping or column shrinking?
For example if you try to insert this html table in the body of a mail you immediatly see that the column is shrinked.
<table border="1">
<tr>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
<td>Test_width_column</td> <td>Test_width_column</td>
</tr>
If someone manages to set properties or css so as not to tighten the columns of this example, let me know! Thanks for help!