Well, this is a really simple question.
I really can't understand what's the real difference between using > and nothing in CSS.
HTML
<p>
Some text <h3>here</h3>
</p>
CSS
p > h3{
text-transform: uppercase;
}
p h3{
text-transform: lowercase;
}
Can someone explain me this?
Thank you.