_x000D_
html, body {_x000D_
font-family: Arial, Helvetica, sans-serif;_x000D_
}_x000D_
_x000D_
/* define a fixed width for the entire menu */_x000D_
.navigation {_x000D_
width: 150px;_x000D_
}_x000D_
_x000D_
/* reset our lists to remove bullet points and padding */_x000D_
.mainmenu, .submenu {_x000D_
list-style: none;_x000D_
padding: 0;_x000D_
margin: 0;_x000D_
}_x000D_
_x000D_
/* make ALL links (main and submenu) have padding and background color */_x000D_
.mainmenu a {_x000D_
display: block;_x000D_
background-color: #CCC;_x000D_
text-decoration: none;_x000D_
padding: 10px;_x000D_
color: #000;_x000D_
}_x000D_
_x000D_
/* add hover behaviour */_x000D_
.mainmenu a:hover {_x000D_
background-color: #C5C5C5;_x000D_
}_x000D_
_x000D_
_x000D_
/* when hovering over a .mainmenu item,_x000D_
display the submenu inside it._x000D_
we're changing the submenu's max-height from 0 to 200px;_x000D_
*/_x000D_
_x000D_
.mainmenu li:hover .submenu {_x000D_
display: block;_x000D_
max-height: 200px;_x000D_
}_x000D_
_x000D_
/*_x000D_
we now overwrite the background-color for .submenu links only._x000D_
CSS reads down the page, so code at the bottom will overwrite the code at the top._x000D_
*/_x000D_
_x000D_
.submenu a {_x000D_
background-color: #999;_x000D_
}_x000D_
_x000D_
/* hover behaviour for links inside .submenu */_x000D_
.submenu a:hover {_x000D_
background-color: #666;_x000D_
}_x000D_
_x000D_
/* this is the initial state of all submenus._x000D_
we set it to max-height: 0, and hide the overflowed content._x000D_
*/_x000D_
.submenu {_x000D_
overflow: hidden;_x000D_
max-height: 0;_x000D_
-webkit-transition: all 0.5s ease-out;_x000D_
}
_x000D_
<html>_x000D_
<body>_x000D_
<head>_x000D_
<link rel="stylesheet" type="css/text" href="nav.css">_x000D_
</head>_x000D_
</body>_x000D_
<nav class="navigation">_x000D_
<ul class="mainmenu">_x000D_
<li><a href="">Home</a></li>_x000D_
<li><a href="">About</a></li>_x000D_
<li><a href="">Products</a>_x000D_
<ul class="submenu">_x000D_
<li><a href="">Tops</a></li>_x000D_
<li><a href="">Bottoms</a></li>_x000D_
<li><a href="">Footwear</a></li>_x000D_
</ul>_x000D_
</li>_x000D_
<li><a href="">Contact us</a></li>_x000D_
</ul>_x000D_
</nav>
_x000D_