无法从一个 li 项目中删除背景颜色
Can't remove background color from one li item
现在我正在尝试删除菜单中最后一个 link 的金色背景和边框。 (右侧)这是一辆手推车。并且背景使它不可见。
我试过了
#top-cart {
background:none!important;
}
我也试过用 li#top-cart、#header #navigation ul.nav > li a:nth-child(4) 和其他几个选择,但无济于事。
任何帮助将不胜感激!
谢谢!
尝试针对此规则:
@media only screen and (min-width: 768px) {
#header #navigation ul.nav > li:last-of-type a { ... } }
使用last-of-type
定位最后一个li元素,
并且您将能够为菜单上的最后一个元素设置样式,对于其他屏幕分辨率依此类推...
现在我正在尝试删除菜单中最后一个 link 的金色背景和边框。 (右侧)这是一辆手推车。并且背景使它不可见。
我试过了
#top-cart {
background:none!important;
}
我也试过用 li#top-cart、#header #navigation ul.nav > li a:nth-child(4) 和其他几个选择,但无济于事。
任何帮助将不胜感激!
谢谢!
尝试针对此规则:
@media only screen and (min-width: 768px) {
#header #navigation ul.nav > li:last-of-type a { ... } }
使用last-of-type
定位最后一个li元素,
并且您将能够为菜单上的最后一个元素设置样式,对于其他屏幕分辨率依此类推...