I've a doubt on descendant selectors...
.classA .classB .classC{
background-color: #000;
}
This applies the background to all the classC elements, child (direct or indirect) of classB elements, where classB element is a child (direct or indirect) of a classA element. This doesn't apply a background to classC elements child of classA elements, but non-child of classB elements. Is this right?
.classA > .classB .classC{
background-color: #000;
}
Thiss applies the background to all the classC elements, child (direct or indirect) off all classB elements, where classB element is a DIRECT (non indirect) child of a class A element.
Is everything right?