When a dropdown in a Webflow Collection List opens beneath the CMS item below it, it’s usually due to layout structure and stacking context—not just z-index. Here’s how to fix it step-by-step:
relative or absolute. This ensures any absolutely-positioned children (like the open dropdown menu) are positioned properly within it.
absolute, with values like top: 100% and left: 0 so that it opens directly beneath the toggle button.
overflow: hidden, z-index, or transform can interfere.
overflow: hidden, as this can clip dropdown content that overflows downward.
transform: translateZ(0px)) or setting will-change: transform on the dropdown parent can create a new stacking context and resolve rendering issues.
To fix a dropdown inside a Webflow Collection List opening behind items below, ensure the dropdown's parent is relative or absolute, the Dropdown List is absolutely positioned with a high z-index, and no essential parent elements have overflow: hidden. This guarantees the dropdown stays visually on top.