如何从last-child中删除底部边框

时间:2017-06-11 04:32:09

标签: css3

我对opencart类别菜单有这种风格:

#menu .dropdown-inner a {
  border-bottom: 1px solid #1f90bb;
}

我正在尝试删除底部边框:

#menu.dropdown-inner a li:last-child { 
  border-bottom: none; 
}

但它没有用。请帮忙!

JS Fiddle Example

1 个答案:

答案 0 :(得分:0)

更改你的第二种风格,使a在li里面:

    .... li:last-child a { 
border-bottom: none !important; 
}