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 trial

CSS Build a Responsive Navigation with Flexbox

Creating a dropdown

I was wondering, how can we make dropdown menu (if any)? horizontal menu which has dropdown menu

post what you have done so far and lets add to it.

1 Answer

Jeremy 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
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jeremy Canela
Full Stack JavaScript Techdegree Graduate 30,766 Points

What 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%;
}