#default-div
{
  background-color: beige;
}

#static-div
{
  background: pink; 
  position: static;
}

#relative-div
{
  background: yellow;
  position: relative;
  top: 300px;
  left: 300px;
}

#parent-div
{
  position: relative;
  background: orange;
  padding: 50px;
}

#parent-div-2
{
  position: relative;
  background: orange;
  height: 1500px;
}

#absolute-div
{
  background:  green;
  position: absolute;
  top: 40px;
  left: 100px;
}

#fixed-div
{
  background-color: green;
  position: fixed;
}

#sticky-div
{
  background: grey;
  position: sticky;
}

body
{
  height: 2000px;
}
