赞
踩
elementUI el-tabs 样式
<el-tabs v-model="activeName" @tab-click="handleClick" :stretch="true"
:popper-append-to-body="false" class="div-tabs">
:stretch="true"设置选项卡自定义撑开样式
:popper-append-to-body=“false” 在#app内部使用,用于单个页面的设置,不污染其他样式
/deep/ .div-tabs{ //选择的内容样式 .el-tabs__item{ color: #666; font-size: 0.83vw; width: 5vw; padding: 0; font-family: PingFang-SC-Medium; text-align: center; } //选中的样式 .el-tabs__item.is-active{ color: #333; font-size: 0.83vw; font-family: PingFang-SC-Medium; } //鼠标放上去的样式 .el-tabs__item:hover { color: #1da27c; } //选中的底部线条样式 .el-tabs__active-bar{ background-color:#2F5E96; width: 5vw !important; } //未选中底部灰色线条样式 .el-tabs__nav-wrap::after { background-color:#D9D9D9; } //文字及tabs居中显示 .el-tabs__nav-scroll{ display: flex; justify-content: center; margin:0 auto } //去掉两边翻页箭头 .el-tabs__nav-next, .el-tabs__nav-prev { display: none; } //去除顶部线 .el-tabs--card>.el-tabs__header .el-tabs__nav { border: none; } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。