How to create a CSS only (vertical) drop-down menu?

In pure CSS: You can do it this way: DEMO the CSS: #global-nav ul ul li{ display:none; } #global-nav li:hover ul li{ display:block; } or with jQuery: DEMO 2 $('#global-nav'). Hover(function(){ $(this). Find('ul ul').

SlideDown(400); },function(){ $(this). Find('ul ul'). SlideUp(400); }).

Thanks so much, it's exactly what I was looking for! – beta Nov 15 '11 at 19:18 1 The pleasure is mine. Thank you!

– roXon Nov 15 '11 at 19:51.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions