Tabs are different heights in tab container widget

0
If I have a number of tabs within a tab container widget, is there a way to keep them all at the same height?   Some have short character strings and some have long character strings. At different zoom levels, the containers can be different heights, and I would like them all to be the same height   Thanks  
asked
1 answers
1

You can use the css property min-height to force a minimum height for the tab, even if the content is shorter.

Ideally you put a height property on the outer tab group and use min-height: 100% for the tabs itself.

answered