HI I am trying to have a table with fixed header, and scrollable data cells below. on the right hand side of the table I would like a scroll bar to allow the data cells to scroll vertically.
This is the code I'm currently trying (without success)
.pb-scroll {
display: block;
max-height: 400px;
overflow: auto;
}
<tbody class="pb-scroll">
<tr>
<td>
etc.
Any help greatly appreciated.
Phil