Css Stick components at the bottom

What Css do i use to stick components at the bottom. Making it float at the bottom.

Tested with a hint component named “hint-end”.

.hint-end {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  width: 100%;
}