效果图:
// 下划线长于文文字
.el-tabs__item.is-active::after {
content: ""; /* 必须,创建一个空的内容 */
position: absolute; /* 让下划线相对于.tabs-item定位 */
bottom: 0; /* 下划线位于元素底部 */
left: 0; /* 从左侧开始 */
width: 120%; /* 下划线宽度设为文字宽度的120%,可根据需要调整 */
height: 2px; /* 下划线的高度 */
background-color: currentColor; /* 使用当前文本颜色作为下划线颜色 */
}