Add show/hide behavior to the dropdown menu using CSS hover and absolute positioning.
.dropdown-menu { display: none; }..dropdown:hover .dropdown-menu { display: block; }..dropdown-menu to position: absolute; top: 100%; left: 0;.Use display: none to hide and display: block to show.