Hello World

by Saurabh Mimani

HTML

<div id="demo">
  <ul class="my-ul">
    <li>First Element</li>
    <li>Second Element</li>
    <li>Third Element</li>
    <li>Fourth Element</li>
    <li>Fifth Element</li>
  </ul>
</div>

CSS

.my-ul {
  height: 90vh;
  width: 40%;
  background-color: grey;
}

li:nth-last-of-type(-n+2){
  bottom: 0px;
  position: fixed;
  background-color: red;
}