Bootstrap 4 navbar dropdown menu item not clickable on mobile devices

后端 未结 1 1854
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-19 11:00

I\'ve got a website being developed with Bootstrap 4. When viewing from a mobile device and the menu items have collapsed to the 3 bars, the menu items are not clickable. I\

1条回答
  •  隐瞒了意图╮
    2021-01-19 11:43

    I found out that this was NOT a bug with Bootstrap 4. It was a flaw in how I was configuring my dropdown anchor element. Here's the corrected version:

    
    

    The differences are:

    1. Removed type="button"
    2. Added href="#"
    3. Added role="button"
    4. Added aria-haspopup="true"
    5. Added aria-expanded="false"

    Those 5 things fixed my problem.

    0 讨论(0)
提交回复
热议问题