标签: css css-selectors
我在解决LI列表的最后一个孩子时遇到了问题
这里是我添加的代码#menu-main li:last {border-right:none; }
http://mothernaturemothernurture.com/这是网站
答案 0 :(得分:4)
选择最后一个孩子的语法是:last-child ,而不是:last
#menu-main li:last-child { border-right: none; }