body {
    height: 200vh;
}
.relative{
    position: relative;
 border: 5px solid #ff0606;
border-radius: 4px;
padding: 5px;
left: 100px;
}

.static {
    position: static;
}

.fixed {
    position: fixed;
      bottom: 25px;
  right: 25px;
  width: 300px;
  border: 5px solid #ff0000;
}

.absolute {
  position: absolute;
  top: 80px;
  right: 0;
  width: 200px;
  height: 100px;
  border: 5px solid red;
}

.sticky {
  position: sticky;
  top: 0;
  padding: 5px;
  background-color: #cae8ca;
  border: 5px solid #4CAF50;
}