I asked about the vertical gap causing mouseout on slow pointer movement and the issue got resolved (two separate approaches). However, I noticed that the corrected behavior only applies to FF and Cr, while IE still keeps a tiny vertical gap. It got much tinier, which is good, but it's still there.
.open > .dropdown-menu {
margin-top: initial;
}
See this fiddle and compare the behavior between browsers for details.
How can I make IE behave like the other children in the class?
IE doesn't understand the
initial
value of themargin-top
:You can use
auto
instead:Here is a fork of your jsfiddle:
https://jsfiddle.net/0a67pyd2/4/
Checked in chrome/firefox/ie.