+ 2
Can somebody tell me what is the meaning of this statement in css. The statement: .nav>ul>li{}
3 ответов
+ 4
Select all the li elements with immediate parent of ul element, which with immediate parent of .nav
+ 3
It's going to apply to all elements of that type to the right which have a parent of .nav.
+ 1
First list item of first unordered list inside.nav classes elements.