What\'s the point using this syntax
div.card > div.name
What\'s the difference between this
div.card div.name
div.card > div.name matches
but it doesn't match
div.card div.name matches both.
That is, the > selector makes sure that the selected element on the right side
of the > is an immidiate child of the element on its left side.
The syntax without the > matches any