This question is an exact duplicate:
Tell me pliz how to add smoothness of animation to the drop-down menu on bootstrap? (question marked as duplicate - deleted)
.dropdown .dropdown-menu { display: block; visibility: hidden; opacity: 0; transition: all 0.2s ase; -moz-transition: all 0.2s ease; -webkit-transition: all 0.2s ease; -o-transition: all 0.2s ease; -ms-transition: all 0.2s ease; } .dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; } .dropdown { display: inline-block; } <div class="nav-wrapper"> <ul class="nav navbar-nav"> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"></a> <ul class="dropdown-menu"> <li> <a href="/">Бла</a> </li> <li> <a href="/">Бла</a> </li> </ul> <!-- end dropdown-menu --> </li> </ul> </div>