Carl and Jeff want to know how to allow an HTML table scroll horizontally when the contents are not in view.
YouTube Video: https://youtu.be/KiO36ntv1PA
Blazor Puzzle Home Page: https://blazorpuzzle.com
This is a .NET 9 Blazor Web App with Global Server Interactivity.
We have 3 divs in table cells that have a fixed size.
If you resize the browser so the entire table is out of view, a horizontal scrollbar appears at the bottom of the page.
However, we only want to scroll the contents of the table, not the entire page.
The scenario is that the rest of the page has content that needs to stay put. The only thing that should scroll is the table.
How can we do this?