Is it possible to style the fourth child differently using the ">"
selector like so:
.thisclass > ul > li > ul > li { color: blue; }
I am working with WordPress and trying to avoid creating additional CSS classes. Is there a way to apply styles to the fourth child from outside the "PARENT" element?
Check out this link for reference.