elementUI 导航栏点击之后改变背景色,背景色悬停
Posted panax
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了elementUI 导航栏点击之后改变背景色,背景色悬停相关的知识,希望对你有一定的参考价值。
一开始设置的是:
.menuLeft .el-menu-item:hover{ background: #6db6ff !important; } .menuLeft .el-submenu__title:hover { background: #6db6ff !important; }
但它只是hover事件,并不会使背景色悬停,一直存在。后来又设置了:
.menuLeft .el-menu-item.is-active { background: #6db6ff !important; } .menuLeft .el-submenu__title.is-active { background: #6db6ff !important; }
很好的解决了此问题。
以上是关于elementUI 导航栏点击之后改变背景色,背景色悬停的主要内容,如果未能解决你的问题,请参考以下文章