My table is displayed below:
<table style="width: 100%; white-space: nowrap; overflow: hidden;">
<tbody><tr>
<th>
Department
</th>
<th>
Function
</th>
<th>
Process
</th>
<th style="max-width: 75px;">
Procedure
</th>
<th>
</th>
</tr>
<tr>
<td>Legal Process</td>
<td>Setup and Maintenance</td>
<td>New placement scrub</td>
<td>Review of newly placed accounts for missing or incorrect information before collection efforts</td>
<td align="center"><a href="/MasterList/Details/1">Details</a></td>
</tr>...
...
The current display of the table is causing some issues with really long Procedure names extending off the page. I would like to implement a solution where text that exceeds cell width gets hidden, particularly for the Procedures column.
I prefer to only set width constraints on the Procedures to address this issue without any additional CSS modifications beyond what's provided in the asp.net MVC4 starter template.