Whenever the autocomplete menu pops up in Chrome and I hover over one of the selections, the content below the input jumps. It seems like the autocomplete selection is adding vertical padding for some reason. How can I prevent this annoyance? Here is a demonstration:
You might need to access the fiddle because the autocomplete is disabled for unknown reasons in the snippet. However, if you click on the input and hover over an autocomplete entry, you will see the green box move. What causes this issue and how can you eliminate this behavior?
div{
width:300px;
height:200px;
background: green;
}
<input type="text" name="q" />
<div></div>