jquery - Table with fixed header, first column and footer + Scroll inside -


i have create table contains lot of data. therefore, need finding solution how make flexible not fill space.

i have thought should work shown in picture here:

table

you can make class on part like:

.block {    display: block;    overflow: auto;  }
<table>    <tr>      <th>...</th>      <th>...</th>    </tr>    <tr>      <td>....</td>      <td class='block'>lot of data</td>    </tr>  </table>


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -