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 -

Qt QGraphicsScene is not accessable from QGraphicsView (on Qt 5.6.1) -

Python Tornado package error when running server -