first-child test

by andrelaszlo

HTML

<div class="highlight">
  <p>
    first
  </p>
  <h1>
    header
  </h1>
  <p>
    second
  </p>
  <h1>
    header2
  </h1>
</div>

<div class="highlight">
  <h1>
    header
  </h1>
  <p>
    first
  </p>
  <p>
    second
  </p>
</div>

SASS

.highlight
  border: 1px solid black
  
h1:first-child
  color: red