Why is my .sticky-top class not working in Bootstrap 4?

One more thing to check is if any parent element has one of these css properties set:

  • overflow
  • overflow-y
  • overflow-x

If this property is set to one of these vales it will NOT work: auto, hidden, overlay, scroll.

The best solution is to remove it or change its value to ‘unset’

enter image description here

Leave a Comment