how to select the first child ,where in done menu dynamic in word press
.my-menu li:first-of-type a { ... }
:first-child {} would probably be a safer bet as :first-of-type {} is only IE9+ whereas first child goes back to IE7.
:first-child {}
:first-of-type {}
how to select the first child ,where in done menu dynamic in word press
:first-child {}would probably be a safer bet as:first-of-type {}is only IE9+ whereas first child goes back to IE7.