ElementUI---Tabs标签页修改样式,去除样式中的border 横向和竖向

在这里插入图片描述
选中时 颜色设置
/deep/.el-tabs__item:hover {
color: #1da27c;
}

选中后 样式设置
/deep/.el-tabs__item.is-active {
color: #1da27c;
font-weight: bold;
}

** 掉el-tab-pane切换时的蓝色下划线**
/deep/ .el-tabs__active-bar {
background-color: transparent;
}

去掉el-tab-pane底部灰色线条
/deep/.el-tabs__nav-wrap::after {
height: 0 !important;
}

修改样式
/deep/ .el-tabs__item {
padding: 0 20px 0 0;
}


版权声明:本文为weixin_46313540原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。