I\'m trying to make a simple CSS drop down menu that when you mouse over a link, the sub menu appears. I\'ve managed to achieve this when you mouse over an li but can\'t fig
Simply put, this is not something you can do in CSS as the nested is in the and not the (Or the entire submenu would be a link and that's just silly)
You can get around that with javascript/jquery
$('.menu ul li a').hover(function() { $(this).parent().children('ul').toggle(); });