Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialammarkhan
Front End Web Development Techdegree Student 21,661 PointsCreating a dropdown
I was wondering, how can we make dropdown menu (if any)? horizontal menu which has dropdown menu
1 Answer
Jeremy Canela
Full Stack JavaScript Techdegree Graduate 30,766 PointsHere's a really simple dropdown menu: https://jsfiddle.net/FocuZst/y96hfpt6/embedded/result/ :)!
ammarkhan
Front End Web Development Techdegree Student 21,661 PointsJeremy Canela Here is a preview on what i have done, but as codepen isn't responding to flex-box. it is showing as a vertical menu. http://codepen.io/anon/pen/vLKjoW
Jeremy Canela
Full Stack JavaScript Techdegree Graduate 30,766 PointsWhat I did was I added the class of dropdown to the li
that contains the dropdown. Then, I set position: relative;
on .dropdown
. Then on the dropdown box, I set its position to absolute and top 100%:
li.dropdown {
position: relative;
}
li.dropdown .dropdown-container {
display: none;
}
li.dropdown:hover .dropdown-container {
display: block;
position: absolute;
top: 100%;
}
Jacob Mishkin
23,118 PointsJacob Mishkin
23,118 Pointspost what you have done so far and lets add to it.