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:
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
Post a Comment