I'm confused about this two selector in css
In W3schools CSS Selector Reference said:
element element like
div p
: Selects all<p>
elements inside<div>
elements
and
element>element like
div > p
: Selects all<p>
elements where the parent is a element
what's difference between this two definition?