html - Spooky stuff happening when hovering over dropdown -


im having problem when im trying create dropdown.(see jsfiddle) navigation menu going side side when im hovering on it.. have not seen other placed can solve problem :/

jsfiddle: http://jsfiddle.net/kavqc/2/

i think problem here place:

.dropdown {     position:absolute;      top:62px;      left:0;      visibility:hidden;     background-color: red; } 

ps: sry bad english

the reason menu jumps right because of margin-left style:

.navbar-menu:hover {     ...     margin-left: 200px; // remove     ...  } 

here jsfiddle margin-left removed: http://jsfiddle.net/kavqc/3/


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -