I tried to implement the following in less:
nav > ul > li:first-child
using:
nav {
ul {
li:first-child {
However the result was:
nav ul li:first-child
Can someone explain the difference between the two CSS results and also tell me how I can use less to get the result "nav > ul > li:first-child"