I have a menu created through a list, and need it to be a bit more interactive with the user.
<ul class="baked">
<li>
<a href="P.html">P</li>
<ul>
<li><a href="R.html">R</a></li>
<li><a href="P.html">P</a></li>
<li><a href="N.html">N</a></li>
<li><a href="U.html">U</a></li>
<li><a href="T.html">T</a></li>
</ul>
</li>
I want this menu to be a drop down menu, with one head and three additional options opening up when the main menu is entered via hovering.
And the css:
ul.baked{margin-top: -140px;
position: absolute;
float: left;}
ul.baked:hover{background:silver;
width: 200px;
height: 200px;
border-radius: 4pt;
border: 1px solid #000;
box-shadow: inset 0px 6px 5px -2px #657;
Also I noticed a flickering when i approach the menu a bit too early. How can i solve this?