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\
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:
Rankings
The differences are:
type="button"
href="#"
role="button"
aria-haspopup="true"
aria-expanded="false"
Those 5 things fixed my problem.