答案 0 :(得分:0)
您的custom.css
.tabs-container > .tab {
flex-grow: 1; /*evenly distribute space*/
min-width: 12% !important; /*width of the entire tab*/
max-width: 12% !important;
}
.tabs-container > .tab > .tab-label {
max-width: 90%; /*fix shifting close icon*/
}
.tabs-container > .tab > .tab-label > .label-name {
display: inline-block; /*necessary for overflow work*/
max-width: 87%; /*text width*/
overflow: hidden;
text-overflow: ellipsis;
}