Does anyone know a vanilla way of making the body of a table scrollable using only html and css?
The obvious solution
tbody {
height: 200px;
overflow-y: scroll;
}
does not work.
Wouldnt this be the obvious use of tables?
am I doing something wrong?
