Tagged: Tab element
How can I get a tab container element to have a fixed height regardless of content and if needed to show a scroller.
Thanks.
Hi themeforesttony!
Try this CSS out.
.tabcontainer {
height: 300px;
overflow: scroll;
}
Regards,
Elliott
Thank you very much!!