Enabling Scroll and Overflow in Tab Content

Hi I have a tab with multiple div objects aligned using flex-wrap. How can I setup the tab pane content to only show a portion of the content using vertical scroll.

BSS View

HTML View

You can do it with css like this

.tab-content {
  height: 300px; /* your desired height of the tab-content */
  overflow: hidden;
  overflow-y: auto;
}
2 Likes