I\'m trying to apply CSS to any immediate child of a parent container element. How do I use CSS\'s descendant < selector to select any immediate child regard
<
I assume you mean the child selector. It's >, not <.
>
.parent > *
That will select any element. You can of course use any other selector as the child (an element, class, id, etc.)