Here are two examples of css selectors and I can't tell what the difference is and therefore, which one should be used in which cases:
.foo-class a{
/* this will select all anchor tags inside foo-classes */
}
.foo-class > a{
/* this will also select all anchor tags inside foo-classes, no? */
}
EDIT: I just found the answer. ">" only selects direct children. I'll leave the question up here in case others find it useful.