I put together a fiddle with a very basic hover example.
Here is the CSS:
.button
{
width: 50px;
height: 15px;
background-color: #090;
padding: 5px;
}
.menu
{
height: 200px;
width: 50px;
background-color: #900;
display: none;
}
I’m curious what the best way to position the menus is. How do I make it so that the first menu drops down right below the first button and the second menu drops down right below the second button? I’m not so good at CSS positioning and the like.
The best way would be to use
<ul>instead of your current setup.http://jsfiddle.net/elclanrs/fHmvs/1/
css:
jq: