I need your help to fix the first column in responsive screen This is my table :
<div class="row">
<div class="col-lg-6">
<div class="panel panel-default">
<div class="panel-heading">Hover Rows</div>
<div class="panel-body">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>Number</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<td>Number 1</td>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<td>Number 2</td>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<td>Number 3</td>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
And this is jsfiddle http://jsfiddle.net/faissal_aboullait/5g523nqx/ What i need is that the first column (Number) still fixed in responsive design, I tried out a lot of solutions in stackoverflow but nothing work for my case.
try this fiddle http://jsfiddle.net/zS7Ny/