#parent-div{
  position: relative;
  background: lime;
  height: 1105px;
}

#static-div {
  background: maroon;
  color: green;
  position: static;
}

#sticky-div {
  background: blue;
  padding: 10px;
  color: white;
  position: sticky;
  top: 200px;
}

#relative-div {
  background: Pink;
  position: relative;
  top: 50px;
  left: 10px;
}

#absolute-div{
  position: absolute;
  background: cyan;
  top: 40px;
  left: 70px;
}

#fixed-div{
  background: orange;
  position: fixed;
}
body {
 height: 2000px; 
}
