I am looking to create a table with fixed heights for the <tr>
elements, while allowing very long <td>
content to be continued within the cell. Something similar to Zurb's Responsive Tables for desktop browsers rather than mobile devices.
<table>
<tbody>
<tr>
<td>Hello</td>
<td><div>This is a div in a td with a longer text</div></td>
<td><div>This is aaaaaaaaaaaalso a td with a looong word</div></td>
<td>Normal sized td</td>
</tr>
</tbody>
</table>
This sample demonstrates exactly what I'm trying to achieve: jsfiddle
The date column must retain its small size.
If anyone has any suggestions on how to accomplish this layout without using JavaScript, it would be greatly appreciated!