i am abit confused between these 2 selectors
div p
selects all p within a div whether or not its an immediate decedent? so if the p is inside another div it will still be selected?
then child selectors
div > p
whats the difference? does a child mean immediate child?
eg.
<div><p>
vs
<div><div><p>
both will be selected?