我对opencart类别菜单有这种风格:
#menu .dropdown-inner a {
border-bottom: 1px solid #1f90bb;
}
我正在尝试删除底部边框:
#menu.dropdown-inner a li:last-child {
border-bottom: none;
}
但它没有用。请帮忙!
答案 0 :(得分:0)
更改你的第二种风格,使a在li里面:
.... li:last-child a {
border-bottom: none !important;
}