This issue has appeared many times. I want the table's title to be fixed when I scroll down, how can I do that? My code for the table looks like this
<table class="specifictableheight table table-striped">
<h3>TEST</h3>
<thead>
<tr>
<th>Places</th>
<th>Hits</th>
</tr>
</thead>
<tbody>
<?php
foreach ($top3overRestaruants as $key => $value)
{
?>
<tr class="<?= $isactive ? 'alert-success' : ''; ?>">
<td><?= $key ?></td>
<td><?= $value ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
TEST
this maybe? – Develoger Feb 10 '13 at 11:45