body {
	height: 3000px;
}

.box {
	width: 100px;
  height: 100px;
}

#box1 {
	background-color: blue;
  position: static;
}
#box2 {
	background-color: red;
  position: relative;
  left: 50px;
  top: 0px
}
#box3 {
	background-color: green;
  position: absolute;
  top: 50px;
  left: 200px;
}
#box4 {
	background-color: yellow;
  position: fixed;
}
#box5 {
	background-color: magenta;
  position: sticky;
  top: 10px;
}

#inner {
	background-color: white;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  left: 50px
}