执行完代码后发现写在样式表中的hover效果失效,改了好几遍差点重新写函数,后来发现很简单,是优先级的问题,css()中的内容覆盖了之前的样式
只需要在样式后写!important即可解决!
.filters-wrap li:hover {
background:#0085d7 !important;
}
.filters-wrap li:hover span {
color:white !important;
}
执行完代码后发现写在样式表中的hover效果失效,改了好几遍差点重新写函数,后来发现很简单,是优先级的问题,css()中的内容覆盖了之前的样式
只需要在样式后写!important即可解决!
.filters-wrap li:hover {
background:#0085d7 !important;
}
.filters-wrap li:hover span {
color:white !important;
}