You're facing a dropdown positioning issue in a Webflow Collection List where the dropdown overlaps incorrectly under another CMS item. This is typically caused by issues with stacking context, overflow settings, or incorrect parent positioning.
position: relative
so that the dropdown with position: absolute
can be correctly positioned within it.z-index
than any adjacent content.z-index: 9999
on the dropdown and a lower value like 1
on the base CMS item if needed.overflow
is set to visible
.overflow: hidden
, it will clip the dropdown even if z-index is correct.transform
, filter
, will-change
, or perspective
can create a new stacking context, which can restrict how z-index
behaves.To fix the dropdown overlapping issue in a Webflow Collection List, apply position: relative
to the CMS item, ensure z-index is high, set overflow to visible on all parent wrappers, and eliminate styles that may create stacking context. This will allow the dropdown to correctly render above other items in the list.