我正在尝试组合下面显示的 2 个代码块,但它似乎不起作用。关于如何最好地做到这一点的任何想法?
分离:
#rack #main #intro #nav-bar ul li:nth-of-type(8):hover {
background-position: -290px -470px;
}
#rack #main #intro #nav-bar ul li.current-menu-item:nth-of-type(8) {
background-position: -290px -470px;
}
结合:
#rack #main #intro #nav-bar ul li:nth-of-type(8):hover,
#rack #main #intro #nav-bar ul li.current-menu-item:nth-of-type(8) {
background-position: -290px -470px;
}