My html
<div class="container">
<div class="row">
<div>
<table class="table table-bordered table-striped" width="600">
<tr>
<td>User Count</td>
<td>@Model.UserCount</td>
</tr>
</table>
</div>
</div>
</div>
The width="600" is ignored. I read somewhere that this is because the table fills up the container 100%. But how to override this and set a specific width for the table?