I have a scrollable container with a fixed height, in this container I have some ul
lists with li
items.
In my solution JavaScript is used to give all ul
elements the same height, based on the element with the biggest height.
I prepared a simple fiddle, but it perfectly shows the issue.
Now it seems a drop in Internet Explorer is only possible in the area of the target list, which has been visible without scrolling.
It works without problems in Firefox and Chrome.
Steps to reproduce:
Has anybody ever faced this issue?
Is this really a bug of Internet Explorer or did I made some mistakes?
Is this also broken in Edge?
Try to remove the height
from the inner
class. This occurs because the height of the inner container is set 100%
which equals the scrollable container height.