how to create drop down (navigation )menu with collapse effect. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

how to create drop down (navigation )menu with collapse effect.

I want drop down menu which contains links(#1,#2,#3...) using html css js or php..please help me...

9th Jun 2017, 7:52 AM
Krishna Teja
Krishna Teja - avatar
4 Answers
+ 5
<!DOCTYPE html> <html> <head> <style> .dropbtn { background-color: #4CAF50; color: white; padding: 16px; font-size: 16px; border: none; cursor: pointer; } .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } .dropdown-content a:hover {background-color: #f1f1f1} .dropdown:hover .dropdown-content { display: block; } .dropdown:hover .dropbtn { background-color: #3e8e41; } </style> </head> <body> <h2>Dropdown Menu</h2> <p>Move the mouse over the button to open the dropdown menu.</p> <div class="dropdown"> <button class="dropbtn">Dropdown</button> <div class="dropdown-content"> <a href="#">Link 1</a> <a href="#">Link 2</a> <a href="#">Link 3</a> </div> </div> <p><strong>Note:</strong> We use href="#" for test links. In a real web site this would be URLs.</p> </body> </html>
9th Jun 2017, 8:14 AM
Amjad
Amjad - avatar
+ 4
Just to make it easier, you can save my code created by Amjad: https://code.sololearn.com/WcJB91T37l77/?ref=app
9th Jun 2017, 9:55 AM
Iwan
Iwan - avatar
+ 3
@amjad thank u v.much
9th Jun 2017, 9:00 AM
Krishna Teja
Krishna Teja - avatar
+ 3
u welcome
9th Jun 2017, 9:03 AM
Amjad
Amjad - avatar