Using LESS I need to remove an :after property within an element's :last-child.
li {
&:after {
content: '/';
}
&:last-child {
&:after {
content: '';
}
}
}
This is obviously not correct nesting - what am I missing?