css同时满足多个class的写法(取交集)
.el-menu-item.is-active { border-left: 5px; border-color: #039EFD; border-right-style: solid; background-color: #D8F4FE; }
css 满足其中一个class的写法(取并集)
.el-menu-item,.is-active { border-left: 5px; border-color: #039EFD; border-right-style: solid; background-color: #D8F4FE; }
标签:el,color,写法,border,class,css From: https://www.cnblogs.com/liyuanhong/p/17859486.html