What’s the point using this syntax
div.card > div.name
What’s the difference between this
div.card div.name
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A > Bwill only select B that are direct children to A (that is, there are no other elements inbetween).A Bwill select any B that are inside A, even if there are other elements between them.