How to make html table vertically scrollable
css, html, jquery
Solution
Why don't you place your table in a div?
<div style="height:100px;overflow:auto;">
... Your code goes here ...
</div>
Problem
see jsbin I have to make my html table vertically scrollable. I have used below code on `tbody` tag but its doesn't work for me ``` <tbody style="height: 100px; overflow: auto"> ```