I'm using the Tabs feature in my web app, and I'd like to be able to keep the tabs visible when scrolling through the content in each tab.
At present, if I set overflow-y: auto to the container div, it allows me to scroll that container (and the tabs with it), meaning that the tabs will disappear as I scroll down the page.
I'd like to have each container div scrollable instead. How can I do this?
The problem seems to be that the child divs can bloat up the parent div.
I'd like the tab bar to be at an absolute position at all times.
Any thoughts?