I need help figuring out how to make the submenu in the navigation bar appear with a transition effect. The CSS code I'm currently using is:
#navigation li ul {
display: none;
width: auto;
position: absolute;
margin: 0;
padding: 0;
background-color: #F87217;
-webkit-transition: 0.7s;
-moz-transition: 0.7s;
-o-transition: 0.7s;
transition: 0.7s;
}
#navigation li:hover ul {
display: block;
}
Any suggestions on how to successfully implement the transition effect?