How to add a bootstrap table with fixed header and scrollable body
 I am pretty sure that everyone is familiar with bootstrap CSS, if not please take a look(bootstrap).  Now Bootstrap has lots of different components and table styling is one of them and they have plenty of different styling options.   Now sometimes if we have to display a large amount of data inside a table, the user will have to scroll till the end of the table and after few scroll, they can not see the table header. There is a way to fix this. Please follow the below steps.   Step1: Create a bootstrap table first   <table class="table table-fixed">    <colgroup></colgroup>    <colgroup class=""></colgroup>    <thead>    <tr>      <th>        <label>          ##        </label>      </th>      <th>        <label class="">          ###        </label>  ...