What I’m trying to do
My Dataview tables are quite long and I am looking to modify the table so the height is restricted, the table is scrollable (vertically and horizontally), and the header locks.
Things I have tried
I changed by obsidian.css file and the following code restricts the height and makes the table scrollable in both the vertical and horizontal directions.
.block-language-dataview{ display: block; height: 400 px; overflow:auto;
However, when I try to add in position: sticky
it does not freeze the header.