Reputation: 8519
I have horizontal list with list items. If you hover the mouse on it, it expands horizontally to make space to show more infos (not implemented)
However I can't figure out why the items are moving down when i hover over it.
https://embed.plnkr.co/51WuwdhmH7yS3pSnkqFY/
(The overlapping thing is just is just plunker i guess)
Thanks!
Upvotes: 0
Views: 223
Reputation: 61
This problem has a very simple fix: in your CSS add vertical-align: top;
to .thread-item
. This will keep the elements on top at all time ;)
Upvotes: 1