I'm seeking advice on how to eliminate the squeezing of a table.
<div class="container">
<table id="table" class="table table-hover" name="table">
<tr>
<td class="col-md-1">20.09.2015</td>
<td class="col-md-1"><a href="#" style="text-decoration:none;"><span class="label label-default label-as-badge" style="font-weight:normal;">category</span></a></td>
<td class="col-md-5"><a id="test" name="test" href="#">41423</a></td>
<td class="col-md-5">1123</td>
</tr>
</table>
</div>
The goal is to keep the left-side td's fixed in size while allowing the right-side td's for title and content to adjust dynamically. When resizing the browser, the right side should shrink first until it can't anymore, then cut off from the right side if needed.
Is this achievable? Thank you!