I am trying to create a four column table with fixed widths. The widths are 27%, 27%, 27%, 19%. The output is pdf.
In this table there is unbroken text that exceeds many of the column widths. For example, 27% will only hold "thismuchtext" however the cell contains "alotmoretextthanthattinyexample". Instead of dropping to the next row, the long text is causing my table to completely ignore the fixed column widths.
Here is an example of my code:
Code: Select all
<table style="mc-table-style: url('../Resources/TableStyles/BasicTable.css');width: 100%;margin-left: 0;margin-right: auto;" class="TableStyle_BasicTable" cellspacing="0">
<col style="width: 27%;" />
<col style="width: 27%" />
<col style="width: 27%" />
<col style="width: 19%;" />
<thead>
Any help would be greatly appreciated!