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 -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -