Is there a way to restrict the height of a table while still being able to scroll through the hidden elements?
I've tried a few methods but none seem to work as intended:
http://www.example.com/code/example
table.ex1 {
table-layout: auto;
height: 20px;
overflow-y: scroll;
}
table.ex2 {
table-layout: fixed;
height: 20px;
overflow-y: scroll;
}