I have a need to use only 2 tabs in my application. So I want them to cover 100% of the w
With Flexbox it's flexible and easier:
.ui-tabs .ui-tabs-nav {
display: flex;
}
.ui-tabs .ui-tabs-nav li {
flex: 1;
display: flex;
/* If placed in a small width sidebar or something like that disabling nowrap will fix the overflow issue */
white-space: normal;
}
.ui-tabs .ui-tabs-nav li a {
flex: 1;
/* If you want to align tab titles center */
text-align: center;
}