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%;
}
2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.