The WebFlow Dropdown is forcing position:static
on certain breakpoints. This is the code webflow inserts:
@media screen and (max-width: 991px)
.w-nav[data-collapse="medium"] .w-dropdown-list {
position: static;
}
This override my position:absolute
rule. I did solve it by adding an combo class selector to the list (higher priority).