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

前端 未结 7 843
梦如初夏
梦如初夏 2020-12-20 13:15

I am new to Bootstrap, trying to make responsive menu. For some reason sticky-top won\'t work. My browser does support it, and comparing my code to other working versions I

7条回答
  •  春和景丽
    2020-12-20 13:49

    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'

提交回复
热议问题