Edit in JSFiddle

<div>
  color will only apply to p inside div
  <h1>CSS Descendant Selectors</h1>
  <p>Descendant selectior applied to all p tag inside div</p>
</div>
<p>Descendant selectior not applied to p tag outside div</p>
  div p {
    color: blue;
  }