simple nth-child

html:

  <ul>
    <li>1</li>
    <li>2</li>
    <li>3</li>
    <li>4</li>
    <li>5</li>
  </ul>
  

css:

    ul li:nth-child(3) {
      color: red;
    }