TabSheet with sticky Tabs

Hi, I am using the newly re-added component TabSheet. I need the tab part to stay sticky on top as the user scrolls. No matter what I do, it does not stay sticky. Is there a trick I am missing?

The tab sheet will automatically add scroll bars for the content if if the height of the tab sheet is not enough for the content. You will thus have to limit the height of the tab sheet so that it always remains visible. You typically do this by setting it’s height to 100% but that might require setting the height of parents also since it will otherwise be 100% of an undefined height.

That works indeed. Thank you!