I am a bit confused between these 2 selectors.
Does the descendent selector:
div p
select all p withi
p
Selects all 'p' elements where the parent is a 'div' element
div > p
It means immediate children Selects all 'p' elements where the parent is a 'div' element